mirror of
https://github.com/qier222/YesPlayMusic.git
synced 2025-03-01 12:29:40 +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,
|
||
|
})
|
||
|
}
|