Could you lend me a hand? I'm encountering an error when trying to import the Vote file. The error message says 'Vote' is defined but never used (no-unused-vars). I attempted to rename the Vote file, but unfortunately, it didn't resolve the issue.
Home.vue
import Vote from "@/components/Vote.vue";
export default {
name: "Home",
components: { Vote }
};
Vote.vue
<script> // @ is an alias to /src //import HelloWorld from "@/components/HelloWorld.vue";
export default {
name: "Vote",
components: {},
data: function(){
return{ emoticons : ['calon-1','calon-2','calon-3','calon-4'] }
}
};