vscode vue 自动格式化
安装Prettier和Vetur插件
选择设置,并且转到编辑文件。增加如下内容。
{"editor.formatOnSave": true,"editor.defaultFormatter": "esbenp.prettier-vscode","[vue]": {"editor.defaultFormatter": "esbenp.prettier-vscode"},"prettier.singleQuote": true,"prettier.semi": false,"prettier.trailingComma": "es5","prettier.arrowParens": "avoid","prettier.endOfLine": "auto","files.associations": {"*.vue": "vue"}
}