Код ниже выдает unexpected token import
const Router = new VueRouter({
routes: [
{ path: '', component: () => import('pages/landing/landing') }
]
})
Это работает, если я делаю, как показано ниже:
import landing from 'pages/landing/landing';
const LandingComp = Vue.component('search-product', landing);
const Router = new VueRouter({
routes: [
{ path: '', component: LandingComp }
]
})
Но я не хочу загружать все компоненты изначально. Я хотел загружать динамически, когда это требуется.
Любая помощь будет оценена. Спасибо!