mirror of
https://code.lenaisten.de/Lenaisten/advent22.git
synced 2024-11-23 00:03:07 +00:00
drawrects stub
This commit is contained in:
parent
2052efedd9
commit
f0db5e57ec
3 changed files with 16 additions and 0 deletions
|
@ -9,6 +9,8 @@
|
||||||
</h1>
|
</h1>
|
||||||
<h2 class="subtitle has-text-centered">Der Gelöt</h2>
|
<h2 class="subtitle has-text-centered">Der Gelöt</h2>
|
||||||
|
|
||||||
|
<CalendarImage />
|
||||||
|
|
||||||
<CalendarDoor
|
<CalendarDoor
|
||||||
v-for="(_, index) in 24"
|
v-for="(_, index) in 24"
|
||||||
:key="index"
|
:key="index"
|
||||||
|
@ -29,12 +31,14 @@
|
||||||
import { Options, Vue } from "vue-class-component";
|
import { Options, Vue } from "vue-class-component";
|
||||||
|
|
||||||
import CalendarDoor from "./components/CalendarDoor.vue";
|
import CalendarDoor from "./components/CalendarDoor.vue";
|
||||||
|
import CalendarImage from "./components/CalendarImage.vue";
|
||||||
import ImageModal from "./components/ImageModal.vue";
|
import ImageModal from "./components/ImageModal.vue";
|
||||||
import LoginModal from "./components/LoginModal.vue";
|
import LoginModal from "./components/LoginModal.vue";
|
||||||
|
|
||||||
@Options({
|
@Options({
|
||||||
components: {
|
components: {
|
||||||
CalendarDoor,
|
CalendarDoor,
|
||||||
|
CalendarImage,
|
||||||
ImageModal,
|
ImageModal,
|
||||||
LoginModal,
|
LoginModal,
|
||||||
},
|
},
|
||||||
|
|
BIN
ui/src/assets/adventskalender.png
(Stored with Git LFS)
Normal file
BIN
ui/src/assets/adventskalender.png
(Stored with Git LFS)
Normal file
Binary file not shown.
9
ui/src/components/CalendarImage.vue
Normal file
9
ui/src/components/CalendarImage.vue
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
<template>
|
||||||
|
<img src="@/assets/adventskalender.png" />
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script lang="ts">
|
||||||
|
import { Vue } from "vue-class-component";
|
||||||
|
|
||||||
|
export default class CalendarImage extends Vue {}
|
||||||
|
</script>
|
Loading…
Reference in a new issue