您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12345678910111213
  1. import {
  2. useQueryClient,
  3. } from '@tanstack/react-query'
  4. export const useInvalid = (key: string[]) => {
  5. const queryClient = useQueryClient()
  6. return () => {
  7. queryClient.invalidateQueries(
  8. {
  9. queryKey: key,
  10. })
  11. }
  12. }