]> git.ipfire.org Git - thirdparty/vuejs/core.git/commitdiff
fix(runtime-core): avoid inlining isShallow (#10238)
author三咲智子 Kevin Deng <sxzz@sxzz.moe>
Mon, 5 Feb 2024 03:36:17 +0000 (11:36 +0800)
committerGitHub <noreply@github.com>
Mon, 5 Feb 2024 03:36:17 +0000 (11:36 +0800)
packages/runtime-core/src/customFormatter.ts

index d2510c09c257a894f1aa6439b8f69db14136195f..abd3a329922677c81763a5c3147298395f7397bf 100644 (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'