function useQueryClient(id): QueryClient;Defined in: vue-query/src/useQueryClient.ts:27
Retrieves the QueryClient installed by VueQueryPlugin, via Vue's inject. Must be called inside setup() or another function that supports an injection context.
string = ''
The queryClientKey passed to VueQueryPlugin — only needed when multiple QueryClients are installed in the same app.
If called outside an injection context, or if no QueryClient was installed via VueQueryPlugin.
<script setup lang="ts">
import { useQueryClient } from '@tanstack/vue-query'
const queryClient = useQueryClient()
function invalidate() {
queryClient.invalidateQueries({ queryKey: ['todos'] })
}
</script>