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
  • fee.ts
  • 物业费
    23fe20ae
    杨泽宇 authored
    2022-04-15 15:03:24 +0800  
    Browse Code »
fee.ts 274 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14
import Layout from '@/layout/enter.vue'
const fee = {
  path: '/',
  component: Layout,
  name: 'Fee',
  children: [{
    path: 'fee',
    name: 'propertyFee',
    component: () => import('@/views/fee/index.vue'),
    meta: { title: '物业费' }
  }]
}

export default fee