closes #4834 create-worker-module #28

Merged
joan merged 27 commits from 4834-create-worker-module into dev 2023-03-08 09:54:59 +00:00
2 changed files with 6 additions and 6 deletions
Showing only changes of commit 8ca5f33ba2 - Show all commits

View File

@ -2,7 +2,7 @@
import { useI18n } from 'vue-i18n';
import { useRouter } from 'vue-router';
import { useQuasar } from 'quasar';
import Paginate from 'src/components/Paginate.vue';
import Paginate from 'src/components/PaginateData.vue';
import WorkerSummaryDialog from './Card/WorkerSummaryDialog.vue';
const router = useRouter();

View File

@ -5,7 +5,7 @@ export default {
path: '/worker',
meta: {
title: 'workers',
icon: 'vn:worker'
icon: 'vn:worker',
},
component: RouterView,
redirect: { name: 'WorkerMain' },
@ -25,7 +25,7 @@ export default {
},
component: () => import('src/pages/Worker/WorkerList.vue'),
},
]
],
},
{
name: 'WorkerCard',
@ -37,11 +37,11 @@ export default {
name: 'WorkerSummary',
path: 'summary',
meta: {
title: 'summary'
title: 'summary',
},
component: () => import('src/pages/Worker/Card/WorkerSummary.vue'),
},
]
],
},
]
],
};