Skip to content

Commit 060c5f1

Browse files
authored
chore: adjust the parameter order of the mountChildren function
1 parent 7a8bac7 commit 060c5f1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/runtime-core/src/renderer.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -876,8 +876,8 @@ function baseCreateRenderer(
876876
parentComponent,
877877
parentSuspense,
878878
isSVG,
879-
optimized,
880879
slotScopeIds,
880+
optimized,
881881
start = 0
882882
) => {
883883
for (let i = start; i < children.length; i++) {
@@ -892,8 +892,8 @@ function baseCreateRenderer(
892892
parentComponent,
893893
parentSuspense,
894894
isSVG,
895-
optimized,
896-
slotScopeIds
895+
slotScopeIds,
896+
optimized
897897
)
898898
}
899899
}

0 commit comments

Comments
 (0)