VSCode中代码格式化Vue属性换行问题
打开VS设置,setting.json添加如下代码{"editor.wordWrap": "on","editor.wordWrapColumn": 800,"[markdown]": {"editor.wordWrap": "on","editor.quickSuggestions": false},// 解决Vue换行问题"vetur.format.defaultFormatter.html"
·
打开VS设置,setting.json添加如下代码
{
"editor.wordWrap": "on",
"editor.wordWrapColumn": 800,
"[markdown]": {
"editor.wordWrap": "on",
"editor.quickSuggestions": false
},
// 解决Vue换行问题
"vetur.format.defaultFormatter.html": "js-beautify-html",
"vetur.format.defaultFormatter.js": "vscode-typ=script",
"vetur.format.defaultFormatterOptions": {
"js-beautify-html": {
"wrap_attributes": "auto"
},
"prettyhtml": {
"printWidth": 100,
"singleQuote": false,
"wrapAttributes": false,
"sortAttributes": false
}
},
}
更多推荐
已为社区贡献1条内容
所有评论(0)