I am trying to lazy load the Login component for my login route. When building webpack I get:
SyntaxError: Unexpected Token
The Login.vue component works fine if I import and assign it the same way I do the Home route.
I'm baffled because I believe this code should work based on this blog.
The line that fails below is:
component: () => import('../components/Login.vue'),
import Vue from 'vue'
import VueRouter from 'vue-router'
import Home from '../components/Home.vue'
Vue.use(VueRouter)
export default new VueRouter({
mode: 'history',
routes: [
{
path: '/',
name: 'home',
component: Home,
meta: {
permission: "anonymous",
},
},
{
path: '/login/',
name: 'login',
component: () => import('../components/Login.vue'),
meta: {
permission: "anonymous",
},
},
],
})
"dependencies": {
"vue": "^2.3.4"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.2",
"babel-loader": "^7.1.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.22.0",
"cross-env": "^3.0.0",
"css-loader": "^0.26.4",
"eslint": "^3.12.2",
"eslint-config-standard": "^6.2.1",
"eslint-friendly-formatter": "^2.0.5",
"eslint-loader": "^1.5.0",
"eslint-plugin-html": "^1.7.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"file-loader": "^0.9.0",
"less": "^2.7.2",
"less-loader": "^4.0.5",
"style-loader": "^0.18.2",
"uiv": "^0.11.4",
"vee-validate": "^2.0.0-rc.7",
"vue-acl": "^2.1.10",
"vue-js-cookie": "^2.0.0",
"vue-loader": "^13.0.2",
"vue-quill-editor": "^2.2.4",
"vue-resource": "^1.3.4",
"vue-router": "^2.7.0",
"vue-template-compiler": "^2.1.0",
"vuex": "^2.3.1",
"webpack": "^2.7.0",
"webpack-bundle-tracker": "^0.2.0",
"webpack-dev-server": "^2.5.1"
}
Your webpack is not configured the spec! Só there are two ways to solve your problem!
The first one is to change all occurence of import('path/to/component.vue')
to System.import('path/to/component.vue')
And the second is using BABEL with the folowing configuration
.babelrc
{
"presets": [
["es2015", { "modules": false }],
"stage-2"
],
"plugins": [
"transform-export-extensions"
]
}
Resources
ES6 Modules
Dynamic Import
Stage-2 Babel Preset
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With