在vscode内配置为"files.associations": {"*.vue": "html"}
后scss会报错,但配置为"files.associations": {"*.vue": "html"}
又会导致template内代码无法补全
进行如下配置后没有效果
"emmet.includeLanguages": {
"vue": "html",
"vue-html": "html"
},
"emmet.syntaxProfiles": {
"vue-html": "html",
"vue": "html"
},
"emmet.triggerExpansionOnTab": true
在 style 标签添加上 lang 属性还会有这个问题吗?