Преглед изворни кода

chore: avoid toHandlers not treeshaken

Evan You пре 1 година
родитељ
комит
0986051f12
1 измењених фајлова са 3 додато и 2 уклоњено
  1. 3 2
      packages/runtime-vapor/src/helpers/toHandlers.ts

+ 3 - 2
packages/runtime-vapor/src/helpers/toHandlers.ts

@@ -2,7 +2,8 @@ import { toHandlers as _toHandlers } from '@vue/runtime-shared'
 import { warn } from '../warning'
 import { NOOP } from '@vue/shared'
 
-export const toHandlers: (
+export const toHandlers = (
   obj: Record<string, any>,
   preserveCaseIfNecessary?: boolean | undefined,
-) => Record<string, any> = _toHandlers.bind(undefined, __DEV__ ? warn : NOOP)
+): Record<string, any> =>
+  _toHandlers(__DEV__ ? warn : NOOP, obj, preserveCaseIfNecessary)