-1👍
The error you’re receiving is just a linting error being thrown. It’s being thrown because the linter expects you to use the Card
component inside the tags.
Try the following:
// inside your Vue component
components: {
// eslint-disable-next-line vue/no-unused-components
Card
}
- [Vuejs]-Vue 3: make depended props of other props in one component
- [Vuejs]-How to bind the input field with vuejs by using template
Source:stackexchange.com