Open
Description
Is it possible to have the js syntax hightlighting inside the v-bind and v-on directives and stuff on a template?
<template>
<label :aria-label="`omg look at ${ myProp }`"> <!-- this -->
<button @click="myMethod('static', $event)"> <!-- this too -->
{{ bla() /* <- this also */ }}
</button>
</label>
</template>