✨ update dependency package
This commit is contained in:
@@ -8,7 +8,7 @@
|
||||
<ATextarea :rows="4" class="comment-text" @focus="onFocusHandler"
|
||||
v-model:value="commentContent"
|
||||
@keyup.ctrl.enter="showSlideCaptcha"
|
||||
:placeholder="commentTextAreaPlaceholder" allow-clear :showCount="false"/>
|
||||
:placeholder="t('comment.placeholder')" allow-clear :showCount="false"/>
|
||||
|
||||
<AFlex :vertical="false" align="center" justify="space-between" class="comment-actions"
|
||||
v-if="showCommentActions">
|
||||
@@ -164,7 +164,6 @@ const showCommentActions = ref<boolean>(false);
|
||||
const commentContent = ref<string>("");
|
||||
|
||||
const user = useStore().user;
|
||||
const commentTextAreaPlaceholder = ref<string>(t('comment.placeholder'));
|
||||
const topicId = ref<string>("123");
|
||||
const showSubmitCaptcha = ref<boolean>(false);
|
||||
const comment = useStore().comment;
|
||||
|
@@ -15,7 +15,7 @@
|
||||
<ATextarea :rows="3" class="comment-text-reply"
|
||||
v-model:value="replyContent"
|
||||
@keyup.ctrl.enter="showSlideCaptcha"
|
||||
:placeholder="commentTextAreaPlaceholder" allow-clear :showCount="false"/>
|
||||
:placeholder="t('comment.placeholder')" allow-clear :showCount="false"/>
|
||||
<AFlex :vertical="false" align="center" justify="space-between" class="comment-actions-reply"
|
||||
>
|
||||
<AFlex :vertical="false" align="center">
|
||||
@@ -169,7 +169,6 @@ import {replySubmitApi} from "@/api/comment";
|
||||
const {t} = useI18n();
|
||||
const comment = useStore().comment;
|
||||
const user = useStore().user;
|
||||
const commentTextAreaPlaceholder = ref<string>(t('comment.placeholder'));
|
||||
const replyContent = ref<string>("");
|
||||
const topicId = ref<string>("123");
|
||||
const showSubmitCaptcha = ref<boolean>(false);
|
||||
|
@@ -17,7 +17,7 @@
|
||||
<ATextarea :rows="3" class="comment-text-reply-child"
|
||||
v-model:value="replyReplyContent"
|
||||
@keyup.ctrl.enter="showSlideCaptcha"
|
||||
:placeholder="commentTextAreaPlaceholder" allow-clear :showCount="false"/>
|
||||
:placeholder="t('comment.placeholder')" allow-clear :showCount="false"/>
|
||||
<AFlex :vertical="false" align="center" justify="space-between"
|
||||
class="comment-actions-reply-child"
|
||||
>
|
||||
@@ -173,7 +173,6 @@ import {ReplyCommentParams} from "@/types/comment";
|
||||
import {useThrottleFn} from "@vueuse/core";
|
||||
|
||||
const {t} = useI18n();
|
||||
const commentTextAreaPlaceholder = ref<string>(t('comment.placeholder'));
|
||||
const comment = useStore().comment;
|
||||
const replyReplyContent = ref<string>("");
|
||||
|
||||
|
Reference in New Issue
Block a user