|
@@ -1,4 +1,5 @@
|
|
|
import { toHandlers as _toHandlers } from '@vue/runtime-shared'
|
|
import { toHandlers as _toHandlers } from '@vue/runtime-shared'
|
|
|
import { warn } from '../warning'
|
|
import { warn } from '../warning'
|
|
|
|
|
+import { NOOP } from '@vue/shared'
|
|
|
|
|
|
|
|
-export const toHandlers = _toHandlers.bind(undefined, warn)
|
|
|
|
|
|
|
+export const toHandlers = _toHandlers.bind(undefined, __DEV__ ? warn : NOOP)
|