Skip to content

Commit 53eee72

Browse files
authoredFeb 5, 2024··
fix(runtime-core): avoid inlining isShallow (#10238)
1 parent 718fc86 commit 53eee72

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed
 

‎packages/runtime-core/src/customFormatter.ts

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
1-
import { type Ref, isReactive, isReadonly, isRef, toRaw } from '@vue/reactivity'
1+
import {
2+
type Ref,
3+
isReactive,
4+
isReadonly,
5+
isRef,
6+
isShallow,
7+
toRaw,
8+
} from '@vue/reactivity'
29
import { EMPTY_OBJ, extend, isArray, isFunction, isObject } from '@vue/shared'
3-
import { isShallow } from '../../reactivity/src/reactive'
410
import type { ComponentInternalInstance, ComponentOptions } from './component'
511
import type { ComponentPublicInstance } from './componentPublicInstance'
612

0 commit comments

Comments
 (0)
Please sign in to comment.