vetur格式化vue文件js代码会被添加上分号且单引号会转变为双引号
办法1:进入首选项-设置-修改User settings,"vetur.format.defaultFormatterOptions": {"js-beautify-html": {// force-aligned | force-expand-multiline"wrap_attributes": "force-aligned
·
办法1:进入首选项-设置-修改 User settings,
// 前提是安装了vetur插件后
"vetur.format.defaultFormatterOptions": {
"js-beautify-html": {
// force-aligned | force-expand-multiline
"wrap_attributes": "force-aligned"
},
"prettyhtml": {
"printWidth": 100,
"singleQuote": false,
"wrapAttributes": false,
"sortAttributes": true
},
"prettier": {
"semi": false, // 是否自动加分号
"singleQuote": true // 是否格式化为单引号
}
},
方式2:user settings中
把"vetur.format.defaultFormatter.js": "prettier",
改为 "vetur.format.defaultFormatter.js": "vscode-typescript"
{
"js-beautify-html": {
// force-aligned | force-expand-multiline
"wrap_attributes": "force-aligned"
},
"prettyhtml": {
"printWidth": 100,
"singleQuote": false,
"wrapAttributes": false,
"sortAttributes": true
},
"prettier": {
"semi": false,
"singleQuote": true
},
"vetur.format.defaultFormatter.js": "vscode-typescript"
}
更多推荐
已为社区贡献6条内容
所有评论(0)