mirror of
https://code.lenaisten.de/Lenaisten/advent22.git
synced 2026-01-11 07:33:02 +00:00
✨ Preview in AdminView is now refreshable
This commit is contained in:
parent
811fec743e
commit
6bbfab2758
1 changed files with 5 additions and 1 deletions
|
|
@ -2,15 +2,19 @@
|
||||||
<ConfigView />
|
<ConfigView />
|
||||||
<CalendarAssistant />
|
<CalendarAssistant />
|
||||||
<DoorMapEditor />
|
<DoorMapEditor />
|
||||||
<BulmaDrawer header="Vorschau">
|
<BulmaDrawer header="Vorschau" :opening="store.update" refreshable>
|
||||||
<UserView />
|
<UserView />
|
||||||
</BulmaDrawer>
|
</BulmaDrawer>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
|
import { advent22Store } from "@/lib/store";
|
||||||
|
|
||||||
import UserView from "../UserView.vue";
|
import UserView from "../UserView.vue";
|
||||||
import BulmaDrawer from "../bulma/Drawer.vue";
|
import BulmaDrawer from "../bulma/Drawer.vue";
|
||||||
import CalendarAssistant from "./CalendarAssistant.vue";
|
import CalendarAssistant from "./CalendarAssistant.vue";
|
||||||
import ConfigView from "./ConfigView.vue";
|
import ConfigView from "./ConfigView.vue";
|
||||||
import DoorMapEditor from "./DoorMapEditor.vue";
|
import DoorMapEditor from "./DoorMapEditor.vue";
|
||||||
|
|
||||||
|
const store = advent22Store();
|
||||||
</script>
|
</script>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue