Reputation: 21
When I name the vue component List.vue
I got the following error:
After I change the name to Lists.vue
, the error disappears:
Why is it happening?
Upvotes: 1
Views: 2222
Reputation: 21
This error is caused because you are using a plural name in your component name. You just have to make it singular. That's all.
Upvotes: 0
Reputation: 7
if you want to disable this validation set the "vue/comment-directive" to 0
Upvotes: 1