mirror of
https://github.com/xxxsf/vue3-h5-template.git
synced 2025-04-06 05:23:46 +08:00
30 lines
532 B
JavaScript
30 lines
532 B
JavaScript
import Vue from 'vue'
|
|
import VueRouter from 'vue-router'
|
|
|
|
/* 开启debug模式 */
|
|
Vue.config.debug = true
|
|
Vue.use(VueRouter);
|
|
|
|
import Index from '../pages/index'
|
|
import SecondComponent from '../pages/otherPages'
|
|
import ThirdComponent from '../pages/otherPages2'
|
|
|
|
export default new VueRouter({
|
|
mode: 'hash', // 还有 history 等
|
|
base: __dirname,
|
|
routes: [
|
|
{
|
|
path: '/index',
|
|
component: Index,
|
|
},
|
|
{
|
|
path: '/second',
|
|
component: SecondComponent,
|
|
},
|
|
{
|
|
path: '/third',
|
|
component: ThirdComponent,
|
|
}
|
|
]
|
|
})
|