安装vetur
打开vscode设置settings.json
{
"editor.tabSize": 2,//缩进单位
"vetur.format.defaultFormatter.html": "js-beautify-html",
"vetur.format.defaultFormatterOptions": {
"js-beautify-html": {
"wrap_line_length": 200,//换行长度
"wrap_attributes": "auto",
"end_with_newline": false
}
},
}