vscode 使用vue格式化工具时配置

商店安装扩展Vetur

点开设置,设置页面点开“拓展”,找到“Vetur”,右侧点击“在setting.json中编辑”,
加入以下配置就好了:

"vetur.format.defaultFormatter.html": "js-beautify-html",
 "vetur.format.defaultFormatterOptions": {
        "js-beautify-html": {
            "wrap_line_length": 220,
            "wrap_attributes": "auto",
            "end_with_newline": false
        }
    }

你可能感兴趣的:(vue,脚手架)