From: Carlos Rodrigues Date: Sat, 30 Dec 2023 00:35:56 +0000 (+0000) Subject: chore: use relative import location instead of package (#9941) X-Git-Tag: v3.4.1~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4c20f502ca85f69b1fd82084589cd8db4de001b3;p=thirdparty%2Fvuejs%2Fcore.git chore: use relative import location instead of package (#9941) --- diff --git a/packages/runtime-core/src/apiWatch.ts b/packages/runtime-core/src/apiWatch.ts index 2f0364388b..a3cd3894f4 100644 --- a/packages/runtime-core/src/apiWatch.ts +++ b/packages/runtime-core/src/apiWatch.ts @@ -42,7 +42,7 @@ import { warn } from './warning' import { DeprecationTypes } from './compat/compatConfig' import { checkCompatEnabled, isCompatEnabled } from './compat/compatConfig' import type { ObjectWatchOptionItem } from './componentOptions' -import { useSSRContext } from '@vue/runtime-core' +import { useSSRContext } from './helpers/useSsrContext' export type WatchEffect = (onCleanup: OnCleanup) => void