mirror of
https://github.com/sunniejs/vue-h5-template.git
synced 2025-04-06 03:57:50 +08:00
分离路由
This commit is contained in:
parent
cd839dc6b3
commit
44277e6975
24
src/config/router.config.js
Normal file
24
src/config/router.config.js
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
/**
|
||||||
|
* 基础路由
|
||||||
|
* @type { *[] }
|
||||||
|
*/
|
||||||
|
export const constantRouterMap = [
|
||||||
|
{
|
||||||
|
path: '/',
|
||||||
|
name: 'index',
|
||||||
|
component: () => import('@/views/home/index'), // 路由懒加载
|
||||||
|
meta: {
|
||||||
|
title: '首页', // 页面标题
|
||||||
|
keepAlive: false // keep-alive 标识
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: '/about',
|
||||||
|
name: 'about',
|
||||||
|
component: () => import('@/views/home/about'),
|
||||||
|
meta: {
|
||||||
|
title: '关于我',
|
||||||
|
keepAlive: false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
@ -1,34 +1,29 @@
|
|||||||
import Vue from 'vue'
|
import Vue from 'vue'
|
||||||
import Router from 'vue-router'
|
import Router from 'vue-router'
|
||||||
|
import { constantRouterMap } from '@/config/router.config'
|
||||||
|
|
||||||
|
// hack router push callback
|
||||||
|
const originalPush = Router.prototype.push
|
||||||
|
Router.prototype.push = function push (location, onResolve, onReject) {
|
||||||
|
if (onResolve || onReject) return originalPush.call(this, location, onResolve, onReject)
|
||||||
|
return originalPush.call(this, location).catch(err => err)
|
||||||
|
}
|
||||||
|
|
||||||
Vue.use(Router)
|
Vue.use(Router)
|
||||||
export const router = [
|
|
||||||
{
|
|
||||||
path: '/',
|
|
||||||
name: 'index',
|
|
||||||
component: () => import('@/views/home/index'), // 路由懒加载
|
|
||||||
meta: {
|
|
||||||
title: '首页', // 页面标题
|
|
||||||
keepAlive: false // keep-alive 标识
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
path: '/about',
|
|
||||||
name: 'about',
|
|
||||||
component: () => import('@/views/home/about'),
|
|
||||||
meta: {
|
|
||||||
title: '关于我',
|
|
||||||
keepAlive: false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
|
|
||||||
const createRouter = () =>
|
const createRouter = () => new Router({
|
||||||
new Router({
|
mode: 'history',
|
||||||
// mode: 'history', // 如果你是 history模式 需要配置vue.config.js publicPath
|
base: process.env.BASE_URL,
|
||||||
// base: '/app/',
|
scrollBehavior: () => ({ y: 0 }),
|
||||||
scrollBehavior: () => ({ y: 0 }),
|
routes: constantRouterMap
|
||||||
routes: router
|
})
|
||||||
})
|
|
||||||
|
|
||||||
export default createRouter()
|
const router = createRouter()
|
||||||
|
|
||||||
|
// Detail see: https://github.com/vuejs/vue-router/issues/1234#issuecomment-357941465
|
||||||
|
export function resetRouter () {
|
||||||
|
const newRouter = createRouter()
|
||||||
|
router.matcher = newRouter.matcher // reset router
|
||||||
|
}
|
||||||
|
|
||||||
|
export default router
|
||||||
|
Loading…
x
Reference in New Issue
Block a user