property.ts
445 Bytes
import Layout from '@/layout/enter.vue'
const property= {
path: '/',
component: Layout,
name: 'Property',
children: [{
path: 'property',
name: 'property',
component: () => import('@/views/property/index.vue'),
meta: { title: '物业管理' }
}, {
path: '/property/edit',
name: 'edit',
component: () => import('@/views/property/edit.vue'),
meta: { title: '物业编辑' }
}]
}
export default property