添加以下代码:

"vetur.format.defaultFormatter.js": "prettier",
    //.vue文件template格式化支持,并使用js-beautify-html插件
    "vetur.format.defaultFormatter.html": "js-beautify-html",
    //js-beautify-html格式化配置,每行80字符属性换行
    "vetur.format.defaultFormatterOptions": {
        "prettier": {
            "printWidth": 300,
            "singleQuote": false,
            "wrapAttributes": false,
            "sortAttributes": false
        },
        "js-beautify-html": {
            "wrap_line_length": 80,
            "wrap_attributes": "force-aligned",
            "end_with_newline": false
        }
    },
    //保存自动格式化
    "editor.formatOnSave": false,
    "editor.codeActionsOnSave": {
        //保存时eslint自动修复错误
        "source.fixAll.eslint": false
    },

注意:要看本地项目中是否含有.vscode文件夹,如果有要配置次文件夹中的settings.json文件才有效果;

 

Logo

前往低代码交流专区

更多推荐