mirror of
https://github.com/sunniejs/vue-h5-template.git
synced 2025-04-06 03:57:50 +08:00
35 lines
723 B
JavaScript
35 lines
723 B
JavaScript
import Vue from 'vue'
|
|
import Router from 'vue-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 = () =>
|
|
new Router({
|
|
// mode: 'history', // 如果你是 history模式 需要配置vue.config.js publicPath
|
|
// base: '/app/',
|
|
scrollBehavior: () => ({y: 0}),
|
|
routes: router
|
|
})
|
|
|
|
export default createRouter()
|