Vue 注释template中组件的属性
想注释一个组件的属性,一直报错[vue/no-parsing-error] Parsing error: unexpected-character-in-attribute-name因为项目中引入了eslint-plugin-vue,对template有默认检测,因此就直接修改.eslintrc.js文件"unexpected-character-in-attribute-name"...
·
想注释一个组件的属性,一直报错
[vue/no-parsing-error] Parsing error: unexpected-character-in-attribute-name
因为项目中引入了eslint-plugin-vue,对template有默认检测,因此就直接修改.eslintrc.js文件
"unexpected-character-in-attribute-name": false,
发现也没啥用.
最后一番查找发现,这个插件是修改了VsCode的默认配置
你得打开Vscode的配置文件
Ctrl+Shift+P ,输入open workspace settings
再搜索 vetur.validation.template
把这玩意给设置成false就成(取消勾选项)
更多推荐
已为社区贡献2条内容
所有评论(0)