I'm developing a web app in Vue 3, with components described in Javascript files, containing HTML templates in Javascript string literals, for example:
app.component('my-alert', {
props: {
status: String,
content: String,
},
template:
`<div class="alert" :class="'alert-'+status" role="alert">
{{content}}
</div>`
})
My IDE is Visual Studio 2019. I'm aware of plugins for Visual Studio Code which enable that IDE to highlight HTML syntax in JS string literals like the above. (See this question and this other question for example.) What I want to know is, are there any similar plugins for Visual Studio 2019? If there are more than one, are any of them especially designed for Vue.js development?