mirror of
https://github.com/better-auth/better-auth.git
synced 2026-05-25 00:22:43 -05:00
13 lines
205 B
TypeScript
13 lines
205 B
TypeScript
import { createAuthClient } from "better-auth/vue";
|
|
|
|
export const authClient = createAuthClient();
|
|
|
|
export const {
|
|
signIn,
|
|
signOut,
|
|
signUp,
|
|
useSession,
|
|
forgetPassword,
|
|
resetPassword,
|
|
} = authClient;
|