diff --git a/components.d.ts b/components.d.ts index a678b6b..54a4847 100644 --- a/components.d.ts +++ b/components.d.ts @@ -26,6 +26,7 @@ declare module 'vue' { AppStepper: typeof import('./src/@core/components/AppStepper.vue')['default'] AppTextarea: typeof import('./src/@core/components/app-form-elements/AppTextarea.vue')['default'] AppTextField: typeof import('./src/@core/components/app-form-elements/AppTextField.vue')['default'] + Buchkarten: typeof import('./src/components/Buchkarten.vue')['default'] Buecherdatenbank: typeof import('./src/pages/buecherdatenbank.vue')['default'] BuyNow: typeof import('./src/@core/components/BuyNow.vue')['default'] CardAddEditDialog: typeof import('./src/components/dialogs/CardAddEditDialog.vue')['default'] diff --git a/src/components/Buchkarten.vue b/src/components/Buchkarten.vue new file mode 100644 index 0000000..78aae52 --- /dev/null +++ b/src/components/Buchkarten.vue @@ -0,0 +1,100 @@ + + + + + + + + + + + + + {{ book.title }} + + + + + von {{ book.authors.map(a => a.name).join(', ') }} + + + + + + {{ genre }} + + + + + + + + + + + Detail Seite + + + + + + + + + + + + + diff --git a/src/pages/buechersuche.vue b/src/pages/buechersuche.vue index d74283f..fb26bc7 100644 --- a/src/pages/buechersuche.vue +++ b/src/pages/buechersuche.vue @@ -77,85 +77,14 @@ - - - - - {{ resultCount }} {{ resultCount === 1 ? 'Buch' : 'Bücher' }} gefunden - - - - - - - - - - - - - {{ book.title }} - - - - - von {{ book.authors.map(a => a.name).join(', ') }} - - - - - - {{ genre }} - - - - - - {{ book.blurb }} - - - - - - - - - - Detail Seite - - - - - - - - - +