unit data collections

This commit is contained in:
Julian Krauser 2025-03-24 17:16:07 +01:00
parent 2a77a950f5
commit b6d6dd0796
12 changed files with 754 additions and 7 deletions

View file

@ -0,0 +1,26 @@
<template>
<MainTemplate>
<template #topBar>
<div class="flex flex-row items-center justify-between pt-5 pb-3 px-7">
<h1 class="font-bold text-xl h-8">Schadensmeldungen</h1>
</div>
</template>
<template #diffMain>
<div class="flex flex-col w-full h-full gap-2 justify-center px-7"></div>
</template>
</MainTemplate>
</template>
<script setup lang="ts">
import { defineComponent } from "vue";
import { mapActions, mapState } from "pinia";
import MainTemplate from "@/templates/Main.vue";
</script>
<script lang="ts">
export default defineComponent({
data() {
return {};
},
});
</script>