From 70d166e4230c02da78075f60bd3b0d115a94f24e Mon Sep 17 00:00:00 2001 From: MCMichinator Date: Sun, 3 Nov 2024 16:22:26 +0100 Subject: [PATCH] Seiten einbinden --- components.d.ts | 1 + src/navigation/vertical/index.js | 10 ++++++++++ typed-router.d.ts | 2 ++ 3 files changed, 13 insertions(+) diff --git a/components.d.ts b/components.d.ts index 9187669..9108af0 100644 --- a/components.d.ts +++ b/components.d.ts @@ -44,6 +44,7 @@ declare module 'vue' { DropZone: typeof import('./src/@core/components/DropZone.vue')['default'] EnableOneTimePasswordDialog: typeof import('./src/components/dialogs/EnableOneTimePasswordDialog.vue')['default'] ErrorHeader: typeof import('./src/components/ErrorHeader.vue')['default'] + Fieberkurve: typeof import('./src/components/Fieberkurve.vue')['default'] I18n: typeof import('./src/@core/components/I18n.vue')['default'] MoreBtn: typeof import('./src/@core/components/MoreBtn.vue')['default'] Notifications: typeof import('./src/@core/components/Notifications.vue')['default'] diff --git a/src/navigation/vertical/index.js b/src/navigation/vertical/index.js index 8820cbd..b1702a8 100644 --- a/src/navigation/vertical/index.js +++ b/src/navigation/vertical/index.js @@ -10,6 +10,16 @@ export default [ to: { name: 'buechersuche' }, icon: { icon: 'tabler-books' }, }, + { + title: 'Fieberkurve', + to: { name: 'testfieberkurven' }, + icon: { icon: 'tabler-chart-dots-3' }, + }, + { + title: 'Detailseite', + to: { name: 'buchdetailseite' }, + icon: { icon: 'tabler-list-details' }, + }, { title: 'Bücher eintragen', to: { name: 'buecher-eintragen' }, diff --git a/typed-router.d.ts b/typed-router.d.ts index c755676..7a17123 100644 --- a/typed-router.d.ts +++ b/typed-router.d.ts @@ -41,9 +41,11 @@ declare module 'vue-router/auto/routes' { export interface RouteNamedMap { 'root': RouteRecordInfo<'root', '/', Record, Record>, '$error': RouteRecordInfo<'$error', '/:error(.*)', { error: ParamValue }, { error: ParamValue }>, + 'buchdetailseite': RouteRecordInfo<'buchdetailseite', '/buchdetailseite', Record, Record>, 'buecher-eintragen': RouteRecordInfo<'buecher-eintragen', '/buecher-eintragen', Record, Record>, 'buechersuche': RouteRecordInfo<'buechersuche', '/buechersuche', Record, Record>, 'login': RouteRecordInfo<'login', '/login', Record, Record>, + 'testfieberkurven': RouteRecordInfo<'testfieberkurven', '/testfieberkurven', Record, Record>, } }