mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
23 lines
350 B
JavaScript
23 lines
350 B
JavaScript
import Vue from 'vue'
|
|
import Router from 'vue-router'
|
|
|
|
Vue.use(Router)
|
|
|
|
export function createRouter () {
|
|
return new Router({
|
|
mode: 'history',
|
|
routes: [
|
|
{
|
|
path: "/",
|
|
component: require('~/views/index.vue'),
|
|
name: "index"
|
|
},
|
|
{
|
|
path: "/about",
|
|
component: require('~/views/about.vue'),
|
|
name: "about"
|
|
}
|
|
]
|
|
})
|
|
}
|