vscode配置vue的自動格式化

weixin_34185364發表於2018-08-25

整理自我的這個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"
}

相關文章