🐛 Fix refresh tk issue
This commit is contained in:
@@ -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">
|
||||
|
Reference in New Issue
Block a user