vue3项目报错:Uncaught ReferenceError: exports is not defined vue-router.esm-bundler
时间: 2023-11-20 20:03:14 浏览: 433
这个错误一般是由于使用了 CommonJS 规范的模块导入方式,而当前环境不支持导出 `exports` 对象。
在 Vue3 项目中,可以使用 ES6 的模块导入方式,例如:
```js
import { createRouter, createWebHistory } from 'vue-router'
```
如果你使用的是 CommonJS 规范的导入方式,可以尝试升级你的 Node.js 版本,或者使用 Babel 转换代码,或者使用 `vue-router` 的 ES6 模块版本。
另外,如果你使用的是 Vue CLI 创建的项目,可以检查一下 `package.json` 中是否已经包含了 `vue-router` 的依赖,如果没有则需要手动安装:
```bash
npm install vue-router@4
```
相关问题
vite项目报错:Uncaught ReferenceError: exports is not defined vue-router.esm-bundler
这个错误通常是因为你在使用 ES 模块语法时,没有使用 Babel 转换器将代码转换为浏览器可识别的语法。
在 Vite 项目中,你可以通过以下步骤解决此错误:
1. 安装 `@babel/plugin-transform-modules-commonjs` 和 `@babel/preset-env` 两个 Babel 插件。
```
npm install --save-dev @babel/plugin-transform-modules-commonjs @babel/preset-env
```
2. 在根目录下创建一个名为 `babel.config.js` 的文件,并添加以下内容:
```javascript
module.exports = {
presets: [
[
'@babel/preset-env',
{
targets: {
chrome: '58',
ie: '11'
}
}
]
],
plugins: ['@babel/plugin-transform-modules-commonjs']
}
```
这个配置文件将使用 `@babel/preset-env` 插件将代码转换为浏览器可识别的语法,并使用 `@babel/plugin-transform-modules-commonjs` 插件将 ES 模块语法转换为 CommonJS 模块语法。
3. 在 `vite.config.js` 文件中添加以下内容:
```javascript
export default {
esbuild: {
jsxFactory: 'h',
jsxFragment: 'Fragment'
},
optimizeDeps: {
include: ['@vueuse/core']
},
rollupInputOptions: {
plugins: [
require('@rollup/plugin-commonjs')()
]
}
}
```
这里我们使用 `@rollup/plugin-commonjs` 插件将 CommonJS 模块语法转换为 ES 模块语法,以便 Vite 可以正确处理它们。
重启 Vite 项目并再次尝试,应该就不会遇到这个错误了。
vite+vue3项目报错:Uncaught ReferenceError: exports is not defined e-router.esm-bundler.js:2
这个错误通常是由于使用了 CommonJS 的导出语法,而不是 ES6 的导出语法所导致的。在 Vue3 中,使用的是 ES6 的模块化方式,所以需要将导出语法改为 ES6 的方式。
你可以在你的项目中查找 `e-router.esm-bundler.js` 这个文件,看看是否有使用到了 `exports` 这个关键字。如果有的话,可以将其改为 ES6 的导出语法,例如使用 `export default` 或 `export { ... }` 进行导出。
如果你无法修改该文件,也可以考虑使用一些工具来将 CommonJS 的语法转换为 ES6 的语法,例如 webpack 的 `imports-loader` 或 `babel-plugin-transform-es2015-modules-commonjs`。
阅读全文