We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There is inconsistent use of directive shorthands (i.e., @ for v-on:, : for v-bind:, # for v-slot:). Read more here: https://vuejs.org/v2/style-guide/#Directive-shorthands-strongly-recommended.
@
v-on:
:
v-bind:
#
v-slot:
Login.vue
This uses shorthand @ for v-on:.
course-plan/src/components/Login.vue
Lines 20 to 26 in 376b9c2
Dashboard.vue
This also uses shorthand.
course-plan/src/components/Dashboard.vue
Lines 3 to 10 in 376b9c2
Semester.vue
This one uses a mix of both? (sometimes opting for :, but mostly v-bind:
course-plan/src/components/Semester.vue
Lines 7 to 22 in 376b9c2
The text was updated successfully, but these errors were encountered:
boonakij
handotdev
No branches or pull requests
There is inconsistent use of directive shorthands (i.e.,
@
forv-on:
,:
forv-bind:
,#
forv-slot:
). Read more here: https://vuejs.org/v2/style-guide/#Directive-shorthands-strongly-recommended.Login.vue
This uses shorthand
@
forv-on:
.course-plan/src/components/Login.vue
Lines 20 to 26 in 376b9c2
Dashboard.vue
This also uses shorthand.
course-plan/src/components/Dashboard.vue
Lines 3 to 10 in 376b9c2
Semester.vue
This one uses a mix of both? (sometimes opting for
:
, but mostlyv-bind:
course-plan/src/components/Semester.vue
Lines 7 to 22 in 376b9c2
The text was updated successfully, but these errors were encountered: