Business.js 465 B

1234567891011121314151617
  1. const businessType = () => import('@/view/business/business-type');
  2. const businessApply = () => import('@/view/business/business-apply');
  3. const applyDetail = () => import('@/view/business/apply-detail');
  4. export default [{
  5. path: '/business-type',
  6. name: 'businessType',
  7. component: businessType
  8. }, {
  9. path: '/business-apply',
  10. name: 'businessApply',
  11. component: businessApply
  12. }, {
  13. path: '/apply-detail',
  14. name: 'applyDetail',
  15. component: applyDetail
  16. }];