]> git.ipfire.org Git - thirdparty/vuejs/core.git/commitdiff
chore: update
authordaiwei <daiwei521@126.com>
Mon, 21 Apr 2025 00:59:04 +0000 (08:59 +0800)
committerdaiwei <daiwei521@126.com>
Mon, 21 Apr 2025 00:59:04 +0000 (08:59 +0800)
packages/compiler-vapor/src/generators/operation.ts

index 4247bc6fecac29a230ac87e21e4d59ab8aa1543b..a3bf5cc21937a7ee271712c36071228cf906ae4d 100644 (file)
@@ -44,7 +44,7 @@ export function genOperationWithInsertionState(
 ): CodeFragment[] {
   const [frag, push] = buildCodeFragment()
   if (isBlockOperation(oper) && oper.parent) {
-    push(...genInsertionstate(oper, context))
+    push(...genInsertionState(oper, context))
   }
   push(...genOperation(oper, context))
   return frag
@@ -152,7 +152,7 @@ export function genEffect(
   return frag
 }
 
-function genInsertionstate(
+function genInsertionState(
   operation: InsertionStateTypes,
   context: CodegenContext,
 ): CodeFragment[] {