VSCode中Vue的components组件名标签无法快捷闭合
1、在设置中搜索:settings.json
2、在配置项中新增:
“emmet.triggerExpansionOnTab”: true,
“emmet.showAbbreviationSuggestions”: true,
“emmet.showExpandedAbbreviation”: “always”,
“emmet.includeLanguages”: {
“javascript”: “html”,
“vue-html”:“html”,
“vue”:“html”
}
3、.vue文件注释html代码失效时,修改settings.json中:
“files.associations”: {
“*.vue”: “html”
}