no message

Former-commit-id: 0a96bb54e9270e451e59b72e00e35053a7c0e152
Former-commit-id: c250ba90da6546626b9831847630aae786c88344
Former-commit-id: c1182b1bdc6ea9b3934275286a93e2760a643bfe
This commit is contained in:
李杨
2018-01-14 22:51:12 +08:00
parent e667b66cf3
commit 173520d20e
210 changed files with 10281 additions and 0 deletions

16
src/router/index.js Executable file
View File

@@ -0,0 +1,16 @@
import Vue from 'vue'
import VueRouter from 'vue-router'
// 在菜单中显示的那部分路由
import { router } from '@/router/menu/index.js'
// 不在菜单中显示的那部分路由
import invisibleRouter from './invisible/index.js'
Vue.use(VueRouter)
export default new VueRouter({
routes: [
...router,
...invisibleRouter
]
})