feat: 请求增加requestid

This commit is contained in:
rd
2025-08-28 14:58:58 +08:00
parent cdda8ffba7
commit 0c14a0caec
4 changed files with 42 additions and 28 deletions

View File

@ -132,7 +132,7 @@ const useTypedEffect = (
const isTyping = computed(
() =>
mergedTypingEnabled.value &&
unref(typingIndex) < content.value.length && // 此时 content.value 已被 mergedTypingEnabled 限定为 string
unref(typingIndex) < (content.value as string).length && // 此时 content.value 已被 mergedTypingEnabled 限定为 string
!(abortRef && abortRef.value),
);