Electron項目因爲eslint配置原因報require錯誤解決 meowrain 收录于 Electron2024-08-31 约 100 字 预计阅读 1 分钟 注意 本文最后更新于 2024-08-31,文中内容可能已过时。 找到.eslintrc.cjs 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 /* eslint-env node */ require('@rushstack/eslint-patch/modern-module-resolution') module.exports = { root: true, 'extends': [ 'plugin:vue/vue3-essential', 'eslint:recommended', '@vue/eslint-config-typescript', '@vue/eslint-config-prettier/skip-formatting' ], parserOptions: { ecmaVersion: 'latest' }, rules: { "no-undef": "off" } } 添加 1 2 3 rules: { "no-undef": "off" } 就可以了 相关内容 Electron引入和使用sqlite Vue項目導入Electron