美文网首页
使用ESlint警告:Require self-closing

使用ESlint警告:Require self-closing

作者: hao102 | 来源:发表于2019-10-24 10:33 被阅读0次

    解决方式:配置eslintrc.js;添加配置内容如下:;参考文章[# 关于nuxt报错Require self-closing on HTML elements (<div>) vue/html-self-closing的解决方法
    ]

    "vue/html-self-closing": ["error", {
                "html": {
                    "void": "never",
                    "normal": "any",
                    "component": "any"
                },
                "svg": "always",
                "math": "always"
            }],
    

    相关文章

      网友评论

          本文标题:使用ESlint警告:Require self-closing

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