Open LeoMartinDev opened 4 years ago
That seems to be correct. Can you provide an example of a vue file as I am not familiar with it. TY
You can learn more about vue single-file components (.vue files) here https://vuejs.org/v2/guide/single-file-components.html
A basic example :
<template>
<h2>Hello, {{ personName }}!</h2>
</template>
<script>
export default {
data: () => {
personName: 'Léo',
},
}
</script>
<style scoped>
h2 {
font-size: 40px;
color: black;
}
</style>
The extension does not seem to be working with .vue files.