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