‘defineProps‘ is not defined.eslint no-undef 问题解决

简介: ‘defineProps‘ is not defined.eslint no-undef 问题解决

问题描述

‘defineProps’ is not defined.eslint no-undef

‘defineEmits’ is not defined.eslint no-undef

微信图片_20230710093843.png



解决方案

Eslint 官方解决方案

微信图片_20230710093845.png



根据 ESLint 官方提供解决方案 解析器使用 vue-eslint-parser v9.0.0 + 版本


npm install -D vue-eslint-parser

1

微信图片_20230710093906.png


.eslintrc.js 关键配置如下,vue-eslint-parser v9.0.0 + 无需配置 vue/setup-compiler-macros 编译宏 :


 parser: 'vue-eslint-parser',

 extends: [

   'eslint:recommended',

// ...  

 ],


再看已无报错提示

微信图片_20230710093921.png



如果编译器还有报错提示尝试重启 VSCode 看

相关文章
|
6月前
|
JavaScript
解决报错ReferenceError: jQuery is not defined
解决报错ReferenceError: jQuery is not defined
|
6月前
|
JavaScript
鬼火起~为什么报错[Vue warn]: Avoid mutating a prop directly since the value will be overwritten whenever the
鬼火起~为什么报错[Vue warn]: Avoid mutating a prop directly since the value will be overwritten whenever the
|
3月前
|
开发框架 小程序
uniApp——Eslint报错'uni' is not defined
uniApp——Eslint报错'uni' is not defined
148 0
|
4月前
|
JavaScript
Eslint-------error ‘Vue‘ is not defined no-undef
Eslint-------error ‘Vue‘ is not defined no-undef
|
6月前
|
JavaScript
vue3的警告问题 [Vue warn]: inject() can only be used inside setup() or functional components. 怎么解决?
vue3的警告问题 [Vue warn]: inject() can only be used inside setup() or functional components. 怎么解决?
373 5
|
6月前
|
JavaScript 前端开发
vue3中使用jsx报错React is not defined和h is not defined
vue3中使用jsx报错React is not defined和h is not defined
812 0
|
6月前
|
JavaScript
vue ssr 报错 ReferenceError: MouseEvent is not defined / window is not defined 等等
vue ssr 报错 ReferenceError: MouseEvent is not defined / window is not defined 等等
178 0
|
11月前
|
JavaScript
解决Vue项目报错:Expected indentation of 2 spaces but found 4. eslint(indent) [8, 1]的方法
解决Vue项目报错:Expected indentation of 2 spaces but found 4. eslint(indent) [8, 1]的方法
|
11月前
|
JSON 数据格式
【Vue3.0】—V- model‘ directives require no argument.
【Vue3.0】—V- model‘ directives require no argument.
|
前端开发 定位技术 API
react BMap is not defined 或者 BMapGL is not defined
react BMap is not defined 或者 BMapGL is not defined
430 0