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>
|
||||
<h2 class="subtitle has-text-centered">Der Gelöt</h2>
|
||||
|
||||
<CalendarImage />
|
||||
|
||||
<CalendarDoor
|
||||
v-for="(_, index) in 24"
|
||||
:key="index"
|
||||
|
@ -29,12 +31,14 @@
|
|||
import { Options, Vue } from "vue-class-component";
|
||||
|
||||
import CalendarDoor from "./components/CalendarDoor.vue";
|
||||
import CalendarImage from "./components/CalendarImage.vue";
|
||||
import ImageModal from "./components/ImageModal.vue";
|
||||
import LoginModal from "./components/LoginModal.vue";
|
||||
|
||||
@Options({
|
||||
components: {
|
||||
CalendarDoor,
|
||||
CalendarImage,
|
||||
ImageModal,
|
||||
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