ваше сообщение коммита

This commit is contained in:
2025-06-06 21:56:17 +03:00
parent 7e17aeb4ab
commit 47a6d8593a
24 changed files with 5072 additions and 3832 deletions

View File

@@ -92,6 +92,18 @@ const routes = [
component: () => import('../views/tables/DeleteTableView.vue'),
props: true
},
{
path: '/contacts/:id',
name: 'contact-details',
component: () => import('../views/contacts/ContactDetailsView.vue'),
props: true
},
{
path: '/contacts/:id/delete',
name: 'contact-delete-confirm',
component: () => import('../views/contacts/ContactDeleteConfirm.vue'),
props: true
},
];
const router = createRouter({