💄 Optimized most of components for moblie

This commit is contained in:
2024-03-28 22:26:45 +08:00
parent cd815f3682
commit d221be90b5
9 changed files with 23 additions and 32 deletions

View File

@@ -1,16 +1,16 @@
<template>
<v-dialog v-model="realms.show.editor" class="max-w-[540px]">
<v-bottom-sheet v-model="realms.show.editor">
<realm-editor @relist="realms.list" />
</v-dialog>
<v-dialog v-model="realms.show.delete" class="max-w-[540px]">
</v-bottom-sheet>
<v-bottom-sheet v-model="realms.show.delete">
<realm-deletion @relist="realms.list" />
</v-dialog>
</v-bottom-sheet>
</template>
<script setup lang="ts">
import { useRealms } from "@/stores/realms"
import RealmEditor from "@/components/realms/RealmEditor.vue"
import RealmDeletion from "./RealmDeletion.vue"
import RealmDeletion from "@/components/realms/RealmDeletion.vue"
const realms = useRealms()
</script>