0
0
Fork 0

refs #4774 router, template trad

This commit is contained in:
Carlos Satorres 2024-02-06 11:59:00 +01:00
parent f715c615d2
commit 74da17c8e2
4 changed files with 21 additions and 1 deletions

View File

@ -774,6 +774,7 @@ export default {
notifications: 'Notifications',
workerCreate: 'New worker',
department: 'Department',
TraductionsVn: 'Traductions',
},
list: {
name: 'Name',

View File

@ -774,6 +774,7 @@ export default {
notifications: 'Notificaciones',
workerCreate: 'Nuevo trabajador',
department: 'Departamentos',
TraductionsVn: 'Traducciones',
},
list: {
name: 'Nombre',

View File

@ -0,0 +1,9 @@
<script setup></script>
<template>
<QTable> </QTable>
</template>
<i18n>
</i18n>

View File

@ -10,7 +10,7 @@ export default {
component: RouterView,
redirect: { name: 'WorkerMain' },
menus: {
main: ['WorkerList', 'WorkerDepartment'],
main: ['WorkerList', 'WorkerDepartment', 'TraductionsVn'],
card: ['WorkerNotificationsManager'],
departmentCard: ['BasicData'],
},
@ -39,6 +39,15 @@ export default {
},
component: () => import('src/pages/Worker/WorkerDepartment.vue'),
},
{
path: 'traductionsVn',
name: 'TraductionsVn',
meta: {
title: 'TraductionsVn',
icon: 'history_edu',
},
component: () => import('src/pages/Worker/TraductionsVn.vue'),
},
{
path: 'create',
name: 'WorkerCreate',