Skip to content

Commit

Permalink
chore: adjust the parameter order of the mountChildren function
Browse files Browse the repository at this point in the history
  • Loading branch information
shen-zhao authored Apr 20, 2021
1 parent 7a8bac7 commit 060c5f1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/runtime-core/src/renderer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -876,8 +876,8 @@ function baseCreateRenderer(
parentComponent,
parentSuspense,
isSVG,
optimized,
slotScopeIds,
optimized,
start = 0
) => {
for (let i = start; i < children.length; i++) {
Expand All @@ -892,8 +892,8 @@ function baseCreateRenderer(
parentComponent,
parentSuspense,
isSVG,
optimized,
slotScopeIds
slotScopeIds,
optimized
)
}
}
Expand Down

0 comments on commit 060c5f1

Please sign in to comment.