1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
| import Vue from 'vue' import Router from 'vue-router' import index from '@/pages/index/index.vue' import weibo from '@/pages/weibo/index/index.vue' import weibo_add from '@/pages/weibo/add/index.vue' import medium from '@/pages/medium/index/index.vue' import medium_add from '@/pages/medium/add/index.vue' import quantify from '@/pages/quantify/index/index.vue' import quantify_data from '@/pages/quantify/socket/index.vue' import newone from '@/pages/newone/index/index.vue' import tools from '@/pages/tools/index/index.vue'
Vue.use(Router)
export default new Router({ routes: [ { path: '/', name: '主页', component: index }, { path: '/weibo', name: '微博', component: weibo }, { path: '/weibo_add', name: '微博添加', component: weibo_add }, { path: '/quantify', name: '量化公告', component: quantify }, { path: '/quantify_data', name: '量化展示', component: quantify_data }, { path: '/tools', name: 'tools', component: tools }, { path: '/medium', name: 'medium', component: medium }, { path: '/medium_add', name: 'medium 添加', component: medium_add }, { path: '/newone', name: '上新', component: newone }, ] })
|