其他分享
首页 > 其他分享> > vue prettier报错-clear

vue prettier报错-clear

作者:互联网

控制台报错信息如下:

F:\addd\dice-front\pages\tag_tag.vue
38:12 error clear vue/comment-directive

解决方案一:忽略报错

在.eslintrc.js中,找到rules,加上如下代码中的—最后一行。

rules: {
‘vue/no-v-html’: ‘off’, //markdown后端渲染
‘no-console’: ‘off’,
‘vue/comment-directive’:‘off’ //加这行就行
}

然后重跑项目。如果没解决,继续百度,如果解决了,希望给个赞。

标签:comment,vue,off,directive,clear,tag,报错
来源: https://blog.csdn.net/weixin_43329956/article/details/122017695