You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
648 B
35 lines
648 B
4 years ago
|
import Vue from "vue";
|
||
|
import VueRouter from "vue-router";
|
||
|
|
||
|
Vue.use(VueRouter);
|
||
|
|
||
|
const routes = [{
|
||
|
path: '/',
|
||
|
component: resolve => require(['../views/Home.vue'], resolve),
|
||
|
meta: {
|
||
|
title: '首页'
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
path: '/testPanel',
|
||
|
component: resolve => require(['../components/TestPanel.vue'], resolve),
|
||
|
meta: {
|
||
|
title: '平板'
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
path: '/codemirror',
|
||
|
component: resolve => require(['../components/codemirror.vue'], resolve),
|
||
|
meta: {
|
||
|
title: '编辑器'
|
||
|
},
|
||
|
}
|
||
|
];
|
||
|
|
||
|
const router = new VueRouter({
|
||
|
mode: 'hash',
|
||
|
base: process.env.BASE_URL,
|
||
|
routes
|
||
|
})
|
||
|
|
||
|
export default router
|