🐛 Fix refresh tk issue

This commit is contained in:
2024-03-28 21:53:40 +08:00
parent 96526da432
commit cd815f3682
3 changed files with 59 additions and 14 deletions

View File

@@ -1,17 +1,23 @@
<template>
<v-dialog v-model="editor.show.comment" class="max-w-[540px]" eager>
<comment-editor />
</v-dialog>
<v-dialog v-model="editor.show.moment" class="max-w-[540px]" eager>
<moment-editor />
</v-dialog>
<v-dialog v-model="editor.show.article" transition="dialog-bottom-transition" fullscreen eager>
<article-editor />
</v-dialog>
<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-dialog v-model="editor.show.delete" class="max-w-[540px]" eager>
<v-bottom-sheet v-model="editor.show.delete" eager>
<post-deletion />
</v-dialog>
</v-bottom-sheet>
</template>
<script setup lang="ts">