community.ts 385 Bytes
import {  RouteRecordRaw } from 'vue-router'
import Layout from '@/layout/enter.vue'
const community= {
      path: '/',
      component: Layout,
      name: 'Community',
      children: [{
        path: 'community',
        name: 'community',
        component: () => import('@/views/community/index.vue'),
        meta: { title: '小区管理' }
      }]
}

export default community