]> git.ipfire.org Git - thirdparty/vuejs/core.git/commitdiff
chore: use relative import location instead of package (#9941)
authorCarlos Rodrigues <carlos@hypermob.co.uk>
Sat, 30 Dec 2023 00:35:56 +0000 (00:35 +0000)
committerGitHub <noreply@github.com>
Sat, 30 Dec 2023 00:35:56 +0000 (08:35 +0800)
packages/runtime-core/src/apiWatch.ts

index 2f0364388b9f6e58023b98dd83a50c40e6a1af44..a3cd3894f41ba59fd5f86ebcd9713165c3546b27 100644 (file)
@@ -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