🎉 Initial Commit(Migrated from Interactive)

This commit is contained in:
2024-03-27 23:07:18 +08:00
commit 3a1cf006f4
126 changed files with 4471 additions and 0 deletions

View File

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