From 9ffd47b0a62945fd3e1a24f0c7634c96d54ae148 Mon Sep 17 00:00:00 2001 From: daiwei Date: Mon, 29 Sep 2025 16:01:32 +0800 Subject: [PATCH] chore: update --- packages/runtime-vapor/src/dom/hydration.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/runtime-vapor/src/dom/hydration.ts b/packages/runtime-vapor/src/dom/hydration.ts index 2e8cd054a..0ac82ebae 100644 --- a/packages/runtime-vapor/src/dom/hydration.ts +++ b/packages/runtime-vapor/src/dom/hydration.ts @@ -174,7 +174,7 @@ function locateHydrationNodeImpl(): void { if (usedCount !== undefined) { node = locateChildByLogicalIndex( insertionParent!, - ($idx || 0) + usedCount + 1, + $idx + usedCount + 1, )! usedCount++ } else {