35 lines
1,019 B
Vue
35 lines
1,019 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">
|
|
<a href="/administration-db.png" button primary-outline download="Datenbank-Schema" class="!whitespace-nowrap"
|
|
>Bild herunterladen</a
|
|
>
|
|
<button primary-outline @click="closeModal">schließ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>
|