vscode配置vue的自动格式化

整理自我的这个issue

ctrl + shift + p > Configure Language Specific Settings > Vue > 编辑文件.

下面是我目前的配置, 添加与vue相关的那些行即可.

{
    "window.zoomLevel": 2,
    "explorer.confirmDelete": false,
    "[vue]": {
        "editor.formatOnSave": true,
    },
    "files.associations": {
        "*.vue": "vue"
    },
    "vetur.format.defaultFormatter.html": "js-beautify-html"
}

你可能感兴趣的:(vscode配置vue的自动格式化)