mirror of
https://github.com/qier222/YesPlayMusic.git
synced 2025-03-01 15:04:26 +08:00
9 lines
235 B
TypeScript
9 lines
235 B
TypeScript
import { fetchUserAccount } from '@/api/user'
|
|
import { UserApiNames } from '@/api/user'
|
|
|
|
export default function useUser() {
|
|
return useQuery(UserApiNames.FETCH_USER_ACCOUNT, fetchUserAccount, {
|
|
refetchOnWindowFocus: true,
|
|
})
|
|
}
|