美文网首页
vuter配置

vuter配置

作者: 超开心儿 | 来源:发表于2022-03-30 10:32 被阅读0次

    代码不折行相关

       "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
            }
        },
        "vetur.grammar.customBlocks": {
            "docs": "md",
            "i18n": "json"
        }
    

    相关文章

      网友评论

          本文标题:vuter配置

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