You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
import Vue from 'vue'
|
|
|
|
|
import VueRouter from 'vue-router'
|
|
|
|
|
|
|
|
|
|
Vue.use(VueRouter)
|
|
|
|
|
|
|
|
|
|
function load (component) {
|
|
|
|
|
return () => System.import(`components/${component}.vue`)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default new VueRouter({
|
|
|
|
|
/*
|
|
|
|
|
* NOTE! VueRouter "history" mode DOESN'T works for Cordova builds,
|
|
|
|
|
* it is only to be used only for websites.
|
|
|
|
|
*
|
|
|
|
|
* If you decide to go with "history" mode, please also open /config/index.js
|
|
|
|
|
* and set "build.publicPath" to something other than an empty string.
|
|
|
|
|
* Example: '/' instead of current ''
|
|
|
|
|
*
|
|
|
|
|
* If switching back to default "hash" mode, don't forget to set the
|
|
|
|
|
* build publicPath back to '' so Cordova builds work again.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
routes: [
|
|
|
|
|
{
|
|
|
|
|
path: '/',
|
|
|
|
|
component: load('Index'),
|
|
|
|
|
children: [
|
|
|
|
|
{ path: '', component: load('index/main') },
|
|
|
|
|
{ path: 'foo', component: load('index/foo') }
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
})
|