This commit is contained in:
2025-06-10 14:04:16 +08:00
parent 03ecb95a9b
commit 703ccc6e28
5 changed files with 60 additions and 6 deletions

View File

@@ -32,7 +32,9 @@ const success = async () => {
watch(
() => [data, current],
() => {
content.push(...data.children.back[current.value].content_arr);
if (data.children.back[current.value]?.content_arr) {
content.push(...data.children.back[current.value].content_arr);
}
},
{deep: true, immediate: true}
)