Sign in

cnlive_project / cnlive-community-web-vue · Files

GitLab

  • Back to group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • cnlive-community-web-vue
  • src
  • router
  • modules
  • maintain.ts
  • add 项目维护
    d5cbea47
    张红振 authored
    2022-01-25 14:08:47 +0800  
    Browse Code »
maintain.ts 302 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
import Layout from '@/layout/enter.vue'
const Maintain = {
  path: '/',
  component: Layout,
  name: 'maintain',
  children: [{
    path: 'maintain',
    name: 'maintain',
    component: () => import('@/views/maintain/index.vue'),
    meta: { title: '项目维护' }
  }
  ]
}

export default Maintain