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

use-base.ts 266B

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