With the last update of VS Code (updated yesterday), the emmet aren't working anymore on vue-html.
Here's my settings :
"emmet.useNewEmmet": false,
"emmet.syntaxProfiles": {
"vue-html": "html",
"vue": "html"
}
Now, the "emmet.useNewEmmet" is an unknow configuration setting
Just create a new file or use older .vue file
Replacing it by
"emmet.includeLanguages": {
"vue-html": "html",
"vue": "html"
}
will fix the problem
"vue": "html" only fixes it for html. It doesn't limit it to the <template> region or has CSS support.
I'm working on integrating emmet directly and will make a release soon. You can subscribe to #232.
Most helpful comment
Replacing it by
will fix the problem