fix(runtime-core): avoid inlining isShallow (#10238)

This commit is contained in:
三咲智子 Kevin Deng 2024-02-05 11:36:17 +08:00 committed by GitHub
parent 718fc86f45
commit 53eee72c3a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 8 additions and 2 deletions

View File

@ -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'