From 4c20f502ca85f69b1fd82084589cd8db4de001b3 Mon Sep 17 00:00:00 2001 From: Carlos Rodrigues Date: Sat, 30 Dec 2023 00:35:56 +0000 Subject: [PATCH] chore: use relative import location instead of package (#9941) --- packages/runtime-core/src/apiWatch.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/runtime-core/src/apiWatch.ts b/packages/runtime-core/src/apiWatch.ts index 2f0364388..a3cd3894f 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