You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
611 B
28 lines
611 B
import BasicLayout from '@/layouts/home' |
|
const name = 'estate' |
|
export default { |
|
path: `/${name}`, |
|
component: BasicLayout, |
|
children: [ |
|
{ |
|
path: `index`, |
|
component: () => import(`@/pages/${name}/index`), |
|
}, |
|
{ |
|
path: `event`, |
|
component: () => import(`@/pages/${name}/event`), |
|
}, |
|
{ |
|
path: `orgSetup`, |
|
component: () => import(`@/pages/${name}/orgSetup`), |
|
}, |
|
{ |
|
path: `survey`, |
|
component: () => import(`@/pages/${name}/survey`), |
|
}, |
|
{ |
|
path: `location`, |
|
component: () => import(`@/pages/${name}/location`), |
|
}, |
|
] |
|
};
|
|
|