]> git.ipfire.org Git - thirdparty/vuejs/core.git/commitdiff
chore: adjust the parameter order of the mountChildren function 3672/head
authorzhaozhao <616510680@qq.com>
Tue, 20 Apr 2021 05:43:19 +0000 (13:43 +0800)
committerGitHub <noreply@github.com>
Tue, 20 Apr 2021 05:43:19 +0000 (13:43 +0800)
packages/runtime-core/src/renderer.ts

index 2c1b2bbde1507001d117e002185ae0d15721cd32..2187ce3e477c650def2f93e188177bd97d051fe3 100644 (file)
@@ -876,8 +876,8 @@ function baseCreateRenderer(
     parentComponent,
     parentSuspense,
     isSVG,
-    optimized,
     slotScopeIds,
+    optimized,
     start = 0
   ) => {
     for (let i = start; i < children.length; i++) {
@@ -892,8 +892,8 @@ function baseCreateRenderer(
         parentComponent,
         parentSuspense,
         isSVG,
-        optimized,
-        slotScopeIds
+        slotScopeIds,
+        optimized
       )
     }
   }