解决vue3报 v-model directives require no argument 警告
出现报错 “v-model directives require no argument ” 时候:在 settings.json 文件中添加 “vetur.validation.template”:falsevetur.validation.template”:false如果并没有起作用,就使用第二种方法在 .eslintrc.js 文件里面加入 “vue/no-v-model-argument
·
出现报错 “v-model directives require no argument ” 时候:
- 在 settings.json 文件中添加 “vetur.validation.template”:false
vetur.validation.template”:false
- 如果并没有起作用,就使用第二种方法
在 .eslintrc.js 文件里面加入 “vue/no-v-model-argument”: “off”
"vue/no-v-model-argument": "off"
最后波浪线就会消失。
原创:“https://www.jianshu.com/p/8852f50b23da”
eg.打开 settings.json 文件的两种方法
-
在 Vs Code 里面直接 crtl+p 搜索 settings.json文件
-
如图所示,点击此图标
.
打开settings
点击Text Editor
找到Code Action,并进入Edit in settings.json
更多推荐
已为社区贡献1条内容
所有评论(0)