URL Parameter fct to a specific Directory Card entry

This commit is contained in:
padreug 2025-02-10 21:04:30 +01:00
parent 8dbfd3af2c
commit e6bc387ebb
7 changed files with 461 additions and 372 deletions

View file

@ -20,6 +20,12 @@ const router = createRouter({
path: '/faq',
name: 'faq',
component: FAQ
},
{
path: '/directory/:id',
name: 'directory-item',
component: () => import('@/pages/DirectoryItem.vue'),
props: true
}
]
})