resident.ts
349 Bytes
import { RouteRecordRaw } from 'vue-router'
import Layout from '@/layout/enter.vue'
const resident= {
path: '/',
component: Layout,
name: 'Resident',
children: [{
path: 'resident',
name: 'resident',
component: () => import('@/views/resident/index.vue'),
meta: { title: '业主住户管理' }
}]
}
export default resident