From 670910cc87646e40a1adfe44fc383720a52df0f6 Mon Sep 17 00:00:00 2001 From: Megghy Date: Fri, 27 Oct 2023 17:09:14 +0800 Subject: [PATCH] 3 words --- src/views/view/QuestionBoxView.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/view/QuestionBoxView.vue b/src/views/view/QuestionBoxView.vue index 6a483ab..fb67295 100644 --- a/src/views/view/QuestionBoxView.vue +++ b/src/views/view/QuestionBoxView.vue @@ -59,7 +59,7 @@ function countGraphemes(value: string) { return splitter.countGraphemes(value) } async function SendQuestion() { - if (countGraphemes(questionMessage.value) < 10) { + if (countGraphemes(questionMessage.value) < 3) { message.error('内容最少需要10个字') return }