6 lines
118 B
TypeScript
6 lines
118 B
TypeScript
import type { AuthClient } from '~/types/auth'
|
|
|
|
export function useAuth(): AuthClient {
|
|
return useNuxtApp().$auth
|
|
}
|