[core] vue warning on login page #8
Labels
No Label
🛃 types
👪 users
invalid
wontfix
🚀 announcement
🎒 backend
🐞 bug
🐋 docker
💡 enhancement
📺 frontend
🤔 question
🔗duplicate
No Milestone
No project
No Assignees
2 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: Flaschengeist/flaschengeist#8
Loading…
Reference in New Issue
No description provided.
Delete Branch "%!s(<nil>)"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
on the login page there is a vue-warning in the console:
[Vue warn]: setup() return property "
q" should not start with "
" or "_" which are reserved prefixes for Vue internals.Is the '$'-sign here correct or should it be replaced or eleminated?
This would affect several components:
Login.vue
About.vue
MainPage.vue
Settings.vue
...
For the global quasar a different prefix than '$' should be choosen to eleminate the warning.
Login.vue is fixed with
8c9db67b95
The
$
was used with vue2 (OPTIONS-API) but with the composition API no globals are used, so just use a variable returned fromsetup()
.