This repository has been archived on 2024-06-08. You can view files and clone it, but cannot push or open issues or pull requests.
2024-03-28 21:53:40 +08:00

32 lines
907 B
Vue

<template>
<v-bottom-sheet v-model="editor.show.comment" eager>
<div class="h-[720px]">
<comment-editor />
</div>
</v-bottom-sheet>
<v-bottom-sheet v-model="editor.show.moment" eager>
<div class="h-[720px]">
<moment-editor />
</div>
</v-bottom-sheet>
<v-bottom-sheet v-model="editor.show.article" eager>
<div class="h-[720px]">
<article-editor />
</div>
</v-bottom-sheet>
<v-bottom-sheet v-model="editor.show.delete" eager>
<post-deletion />
</v-bottom-sheet>
</template>
<script setup lang="ts">
import { useEditor } from "@/stores/editor"
import MomentEditor from "@/components/publish/MomentEditor.vue"
import CommentEditor from "@/components/publish/CommentEditor.vue"
import ArticleEditor from "@/components/publish/ArticleEditor.vue"
import PostDeletion from "@/components/publish/PostDeletion.vue"
const editor = useEditor()
</script>