赞
踩
VSCode中Vue组件html和css设置代码自动提示
一、点击设置,打开settings.json
二、在最后加上这段代码
// 这段代码对应的作用时提示html标签
"emmet.includeLanguages": {
"vue": "html",
"vue-html": "html",
"wxml": "html"
},
// 这段代码对应的作用是提示css
"files.associations": {
"*.vue":"html"
},
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。