Skip to content

Commit

Permalink
fix(runtime-core): avoid inlining isShallow (#10238)
Browse files Browse the repository at this point in the history
  • Loading branch information
sxzz committed Feb 5, 2024
1 parent 718fc86 commit 53eee72
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions packages/runtime-core/src/customFormatter.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
import { type Ref, isReactive, isReadonly, isRef, toRaw } from '@vue/reactivity'
import {
type Ref,
isReactive,
isReadonly,
isRef,
isShallow,
toRaw,
} from '@vue/reactivity'
import { EMPTY_OBJ, extend, isArray, isFunction, isObject } from '@vue/shared'
import { isShallow } from '../../reactivity/src/reactive'
import type { ComponentInternalInstance, ComponentOptions } from './component'
import type { ComponentPublicInstance } from './componentPublicInstance'

Expand Down

0 comments on commit 53eee72

Please sign in to comment.