美文网首页让前端飞
vscode配置vue的自动格式化

vscode配置vue的自动格式化

作者: 柳正来 | 来源:发表于2018-08-25 02:56 被阅读2次

    整理自我的这个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的自动格式化

        本文链接:https://www.haomeiwen.com/subject/oqjwiftx.html