initial commit
This commit is contained in:
parent
9efc8a209b
commit
aabf45915a
48 changed files with 7400 additions and 0 deletions
5
web/src/layouts/README.md
Normal file
5
web/src/layouts/README.md
Normal file
|
@ -0,0 +1,5 @@
|
|||
# Layouts
|
||||
|
||||
Layouts are reusable components that wrap around pages. They are used to provide a consistent look and feel across multiple pages.
|
||||
|
||||
Full documentation for this feature can be found in the Official [vite-plugin-vue-layouts](https://github.com/JohnCampionJr/vite-plugin-vue-layouts) repository.
|
11
web/src/layouts/default.vue
Normal file
11
web/src/layouts/default.vue
Normal file
|
@ -0,0 +1,11 @@
|
|||
<template>
|
||||
<v-main>
|
||||
<router-view />
|
||||
</v-main>
|
||||
|
||||
<AppFooter />
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup>
|
||||
//
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue