24 lines
609 B
Vue
24 lines
609 B
Vue
<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">Übersicht</h1>
|
|
</div>
|
|
</template>
|
|
<template #diffMain>
|
|
<div class="flex flex-col gap-2 justify-center items-center h-full"></div>
|
|
</template>
|
|
</MainTemplate>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { defineComponent } from "vue";
|
|
import { mapState } from "pinia";
|
|
import MainTemplate from "@/templates/Main.vue";
|
|
</script>
|
|
|
|
<script lang="ts">
|
|
export default defineComponent({
|
|
computed: {},
|
|
});
|
|
</script>
|