Vue3报错: ‘defineProps‘ is not defined,解决方法


问题出现:

今天在使用 组合式 API 的语法糖的时候,定义defineProps时候报错:
图片[1] - Vue3报错: ‘defineProps‘ is not defined,解决方法 - MaxSSL
‘defineProps’ is not defined
查了一下资料,这是因为eslint的语法校验导致的问题。

解决方法1:

在项目根目录的文件.eslintrc.js中做如下配置:
添加配置:"vue/setup-compiler-macros": true,配置完之后需要重启项目,即可解决。

解决方法2:

如果你的项目根目录下没有.eslintrc.js文件,那就找到package.json文件
找到eslintConfig配置项,在这里配置规则:"vue/setup-compiler-macros": true
图片[2] - Vue3报错: ‘defineProps‘ is not defined,解决方法 - MaxSSL

图片[3] - Vue3报错: ‘defineProps‘ is not defined,解决方法 - MaxSSL

© 版权声明
THE END
喜欢就支持一下吧
点赞0 分享