| 123456789101112131415161718192021222324252627 |
- const forum = [
- {
- path: '/forum',
- hide: true,
- component: () => import('@/views/forum/index.vue'),
- meta: {
- title: '在线论坛'
- }
- },
- {
- path: '/forum/detail',
- hide: true,
- component: () => import('@/views/forum/detail.vue'),
- meta: {
- title: '论坛详情'
- }
- },
- {
- path: '/forum/addForum',
- hide: true,
- component: () => import('@/views/forum/addForum.vue'),
- meta: {
- title: '新增帖子'
- }
- }
- ]
- export default forum
|