vue 使用路由component: () =>import (‘ ‘)报错解决办法
vue 使用路由component: () =>import (' ')报错解决办法,今天在别的项目上,加入新需求时,想使用component: () =>import (' ')去加载路由,写好后保存发现报错了。发现是import处报错, import 属于异步引用组件,需要特殊的 babel-loader 处理。以下是我记录的办法
·
今天在别的项目上,加入新需求时,想使用component: () =>import (' ')去加载路由,写好后保存发现报错了。
发现是import处报错, import 属于异步引用组件,需要特殊的 babel-loader 处理。以下是我记录的办法
cnpm install babel-plugin-syntax-dynamic-import -D
然后在build文件下的webpack.base.conf.js文件中的module.exports修改module,添加
options: {
plugins: ['syntax-dynamic-import']
}
然后运行,完美解决
更多推荐
已为社区贡献2条内容
所有评论(0)