vulncost
vulncost copied to clipboard
Not working in .vue files
The extension does not seem to be working with .vue files.
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>