community.ts 638 Bytes

import Layout from '@/layout/enter.vue'
const community = {
  path: '/',
  component: Layout,
  name: 'Community',
  children: [{
    path: 'community',
    name: 'community',
    component: () => import('@/views/community/residence/index.vue'),
    meta: { title: '小区管理' }
  },
  {
    path: 'housekeeper',
    name: 'housekeeper',
    component: () => import('@/views/community/housekeeper/index.vue'),
    meta: { title: '楼宇管理' }
  },
  {
    path: 'houses',
    name: 'houses',
    component: () => import('@/views/community/houses/index.vue'),
    meta: { title: '房屋管理' }
  }
  ]
}

export default community