vetur配置

533 阅读1分钟
    "vetur.completion.scaffoldSnippetSources": {
        "workspace": "💼",
        "user": "🗒️",
        "vetur": "✌"
    },
    "vetur.grammar.customBlocks": {
        "docs": "md",
        "i18n": "json"
    },
    // 2023-2-14
    "vetur.format.defaultFormatter.html": "js-beautify-html", //html不换行,格式化模板选择为:js-beautify-html
    "vetur.format.defaultFormatterOptions": {
        "js-beautify-html": {
            "wrap_attributes": "auto", // html 标签属性 换行设置[auto|force|force-aligned|force-expand-multiline] ["auto"]
            "end_with_newline": false, // 在文件结尾添加新行
        },
        "prettyhtml": {
            "printWidth": 100,
            "singleQuote": false,
            "wrapAttributes": false,
            "sortAttributes": false
        }
    },