web: updated structure

Co-authored-by: wollenberg.niklas@gmail.com <wollenberg.niklas@gmail.com>
This commit is contained in:
Mika 2024-07-08 13:18:54 +02:00
parent ab22d6d830
commit 89c9a9a345
9 changed files with 165 additions and 13 deletions

6
web/components.d.ts vendored
View file

@ -7,7 +7,11 @@ export {}
declare module 'vue' {
export interface GlobalComponents {
HelloWorld: typeof import('./src/components/HelloWorld.vue')['default']
CategoryContainer: typeof import('./src/components/CategoryContainer.vue')['default']
HeaderBar: typeof import('./src/components/HeaderBar.vue')['default']
ListViewElement: typeof import('./src/components/ListViewElement.vue')['default']
ListViewTemplate: typeof import('./src/components/ListViewTemplate.vue')['default']
SearchElement: typeof import('./src/components/SearchElement.vue')['default']
StartPage: typeof import('./src/components/StartPage.vue')['default']
}
}