I have a vue single file component where, the template section looks like this
<template>
<Card>
/// rest of template here ///
</Card>
</template>
Card is an imported Vue component.
For some reason, I don't understand, ESLint in VSCode underlines the element with the red line and is warning me that Card cannot be used as a JSX component. I have installed and configured eslint with vue with every online tutorial I could find and the warning won't go away.
Any ideas on what should I configure to remove this stupid warning?