Skip to content
Discussion options

You must be logged in to vote

This looks correct, but I would suggest you to modify your /index.php a little:

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <link rel="icon" type="image/svg+xml" href="/logo-nm.svg">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Materialverleih NM</title>
</head>

<body>

  <div
    id="app"
    data-fullname="<?= $_SESSION['AD_user'] ?>"
    data-user-id="<?= $_SESSION['user_id'] ?>"
    data-user-type-id="<?= $_SESSION['user_type_id'] ?>">
  </div>

  <script type="module" src="/src/main.js"></script>

</body>

</html>

Like in the base example of Vue: https://github.com/vuejs/create-vue/blob/main/template/base/index.html
This w…

Replies: 9 comments

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Answer selected by donnikitos
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants
Converted from issue

This discussion was converted from issue #37 on November 24, 2024 12:55.