mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-06 06:03:58 +00:00
43 lines
1.2 KiB
JavaScript
43 lines
1.2 KiB
JavaScript
'use strict'
|
|
|
|
import Vue from 'vue'
|
|
import Router from 'vue-router'
|
|
|
|
Vue.use(Router)
|
|
|
|
<% uniqBy(router.routes, '_name').forEach((route) => { %>
|
|
const <%= route._name %> = process.BROWSER_BUILD ? () => System.import('<%= route._component %>') : require('<%= route._component %>')
|
|
<% }) %>
|
|
|
|
const scrollBehavior = (to, from, savedPosition) => {
|
|
if (savedPosition) {
|
|
// savedPosition is only available for popstate navigations.
|
|
return savedPosition
|
|
} else {
|
|
// Scroll to the top by default
|
|
let position = { x: 0, y: 0 }
|
|
// if link has anchor, scroll to anchor by returning the selector
|
|
if (to.hash) {
|
|
position = { selector: to.hash }
|
|
}
|
|
return position
|
|
}
|
|
}
|
|
|
|
export default new Router({
|
|
mode: 'history',
|
|
base: '<%= router.base %>',
|
|
linkActiveClass: '<%= router.linkActiveClass %>',
|
|
scrollBehavior,
|
|
routes: [
|
|
<% router.routes.forEach((route, i) => { %>
|
|
{
|
|
path: '<%= route.path %>',
|
|
component: <%= route._name %><% if (route.name) { %>,
|
|
name: '<%= route.name %>'<% } %><% if (route.meta) { %>,
|
|
meta: <%= JSON.stringify(route.meta) %><% } %>
|
|
}<%= (i + 1 === router.routes.length ? '' : ',') %>
|
|
<% }) %>
|
|
]
|
|
})
|