zl程序教程

您现在的位置是:首页 >  前端

当前栏目

vue项目报错:warning Disallow self-closing on HTML void elements (<img/>)

VueOn项目HTML 报错 WARNING Elements self
2023-09-14 09:04:07 时间

在rule里面加一个规则:

"vue/html-self-closing"
    rules: {
        "no-unused-vars":"off",
        "vue/html-self-closing": ["error", {
            "html": {
                "void": "always",
                "normal": "never",
                "component": "always"
            },
            "svg": "always",
            "math": "always"
        }],
    }

参考:

Disallow self-closing on HTML void elements_lyd的博客-CSDN博客