router-navigation #7

Merged
joan merged 10 commits from router-navigation into dev 2022-04-01 13:07:52 +00:00
1 changed files with 6 additions and 5 deletions
Showing only changes of commit cee5605c63 - Show all commits

View File

@ -7,23 +7,24 @@ export default {
roles: ['salesPerson'],
},
component: () => import('src/pages/Customer/CustomerLayout.vue'),
redirect: { path: '/customer/list' },
redirect: { name: 'CustomerList' },
children: [
{
path: '/customer/list',
path: 'list',
name: 'CustomerList',
meta: {
title: 'list'
},
component: () => import('src/pages/Customer/CustomerList.vue'),
},
{
path: '/customer/:id',
path: ':id',
component: () => import('src/pages/Customer/Card/CustomerCard.vue'),
redirect: { name: 'BasicData' },
redirect: { name: 'CustomerBasicData' },
children: [
{
path: 'basic-data',
name: 'BasicData',
name: 'CustomerBasicData',
meta: {
title: 'basicData'
},