首先找到 .eslintrc.js文件
然后在rules中添加以下配置
"vue/html-self-closing": ["error",{
"html": {
"void": "never",
"normal": "any",
"component": "any"
},
"svg": "always",
"math": "always"
}]
VUE:Require self-closing on HTML elements (「div」) vue/html-self-closing
阅读 68
2022-09-16
首先找到 .eslintrc.js文件
然后在rules中添加以下配置
"vue/html-self-closing": ["error",{
"html": {
"void": "never",
"normal": "any",
"component": "any"
},
"svg": "always",
"math": "always"
}]
相关推荐
精彩评论(0)