赞
踩
Vue + Vue-router + Element-ui 搭建一个非常简单的dashboard demo
转载连接 https://segmentfault.com/a/1190000012015667#item-1
另附带设置路由懒加载代码时出现 Module build failed: SyntaxError: Unexpected token 问题的解决方案
路由懒加载代码
在启动的过程中,
component: () => import(`@/components/${sub.componentName}`) 这行代码的 import 地方提示 Module build failed: SyntaxError: Unexpected token
通过百度查看,发现是缺少了 babel-plugin-syntax-dynamic-import 插件
通过使用命令 npm install babel-plugin-syntax-dynamic-import --save-dev 来安装插件
这时候问题来了,需要引入插件,网上有的说在 .babelrc 文件中引入
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。