33 lines
858 B
Vue
33 lines
858 B
Vue
|
<template>
|
||
|
<div class="flex flex-col w-full h-full overflow-hidden">
|
||
|
<div class="flex flex-col items-center">
|
||
|
<p class="text-xl font-medium">Datenstruktur</p>
|
||
|
</div>
|
||
|
<br />
|
||
|
|
||
|
<div class="grow w-full overflow-hidden">
|
||
|
<img src="/administration-db.png" class="max-h-full max-w-full h-auto w-auto mx-auto" />
|
||
|
</div>
|
||
|
|
||
|
<div class="flex flex-row justify-end">
|
||
|
<div class="flex flex-row gap-4 py-2">
|
||
|
<button primary-outline @click="closeModal">schnließen</button>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script setup lang="ts">
|
||
|
import { defineComponent } from "vue";
|
||
|
import { mapState, mapActions } from "pinia";
|
||
|
import { useModalStore } from "@/stores/modal";
|
||
|
</script>
|
||
|
|
||
|
<script lang="ts">
|
||
|
export default defineComponent({
|
||
|
methods: {
|
||
|
...mapActions(useModalStore, ["closeModal"]),
|
||
|
},
|
||
|
});
|
||
|
</script>
|