diff --git a/packages/vant-use/src/useRelation/useChildren.ts b/packages/vant-use/src/useRelation/useChildren.ts index 7e78075bb..df7173cad 100644 --- a/packages/vant-use/src/useRelation/useChildren.ts +++ b/packages/vant-use/src/useRelation/useChildren.ts @@ -37,6 +37,20 @@ export function flattenVNodes(children: VNodeNormalizedChildren) { return result; } +const findVNodeIndex = (vnodes: VNode[], vnode: VNode) => { + const index = vnodes.indexOf(vnode); + if (index === -1) { + return vnodes.findIndex( + (item) => + vnode.key !== undefined && + vnode.key !== null && + item.type === vnode.type && + item.key === vnode.key + ); + } + return index; +}; + // sort children instances by vnodes order export function sortChildren( parent: ComponentInternalInstance, @@ -46,7 +60,7 @@ export function sortChildren( const vnodes = flattenVNodes(parent.subTree.children); internalChildren.sort( - (a, b) => vnodes.indexOf(a.vnode) - vnodes.indexOf(b.vnode) + (a, b) => findVNodeIndex(vnodes, a.vnode) - findVNodeIndex(vnodes, b.vnode) ); const orderedPublicChildren = internalChildren.map((item) => item.proxy!); diff --git a/packages/vant/src/tab/test/__snapshots__/insert.spec.tsx.snap b/packages/vant/src/tab/test/__snapshots__/insert.spec.tsx.snap index d44b3e5f1..f90861d96 100644 --- a/packages/vant/src/tab/test/__snapshots__/insert.spec.tsx.snap +++ b/packages/vant/src/tab/test/__snapshots__/insert.spec.tsx.snap @@ -154,6 +154,54 @@ exports[`should render correctly after inserting a tab 1`] = ` `; +exports[`should render correctly after inserting a tab from an array 1`] = ` +