File size: 677 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
import { hasInjectionContext, inject } from 'vue-demi'
import { getClientKey } from './utils'
import type { QueryClient } from './queryClient'
export function useQueryClient(id = ''): QueryClient {
// ensures that `inject()` can be used
if (!hasInjectionContext()) {
throw new Error(
'vue-query hooks can only be used inside setup() function or functions that support injection context.',
)
}
const key = getClientKey(id)
const queryClient = inject<QueryClient>(key)
if (!queryClient) {
throw new Error(
"No 'queryClient' found in Vue context, use 'VueQueryPlugin' to properly initialize the library.",
)
}
return queryClient
}
|