Example: ```vue <textarea v-model="var as string" class="fld-module h-full resize-none"> ... ``` Class string is assigned incorrect scopes `meta.namespace.declaration.ts` and `source.ts.embedded.html.vue` etc.. The order of attributes seems to make no difference. Workarounds: - bracket the entire v-model expression eg. `v-model="(var as string)"` - use angle bracket casting instead, eg. `v-model="<string>var"` How it appears (using tomorrow night theme):  How it should appear: 