property.ts 343 Bytes
import {  RouteRecordRaw } from 'vue-router'
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: '物业管理' }
  }]
}

export default property