解决:使用 Vue 3 Script Setup 时 ESLint 报错 ‘defineProps‘ is not defined

Posted by Yun on Mon, Jan 31, 2022

Vue 3 的 Script Setup 语法引入了 definePropsdefineEmitsdefineExposewithDefaults 的编译器宏。然而某些情况下,ESLint 会报错以上编译器宏函数未定义。

本文将介绍两种解决方案来解决这个问题(假定你的项目使用 Vue-Cli 进行初始化)。

Step 1. 检查 eslint-plugin-vue 的版本

1npm list eslint-plugin-vue

若版本在 v8.0.0 以上,跳转到 Step 2,否则直接到 Step 3 的内容。

Step 2. 版本为 v8.0.0+

打开 .eslintrc.js 文件并修改如下:

1  env: {
2    node: true,
3    // The Follow config only works with eslint-plugin-vue v8.0.0+
4    "vue/setup-compiler-macros": true,
5  },

Step 3. 版本为 v8.0.0 以下

打开 .eslintrc.js 文件并修改如下:

1  // The Follow configs works with eslint-plugin-vue v7.x.x
2  globals: {
3    defineProps: "readonly",
4    defineEmits: "readonly",
5    defineExpose: "readonly",
6    withDefaults: "readonly",
7  },

若你的 eslint-plugin-vue 版本在 v8 以下,不建议贸然升级版本(尤其是在使用了大量 ts 依赖时)。

参考链接


版权声明:本文遵循 CC BY-SA 4.0 版权协议,转载请附上原文出处链接和本声明。

Copyright statement: This article follows the CC BY-SA 4.0 copyright agreement. For reprinting, please attach the original source link and this statement.