mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-10 04:19:32 +00:00
* fix: rename to * Update demo/nextjs/app/(auth)/forget-password/page.tsx Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com> --------- Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com>
13 lines
211 B
TypeScript
13 lines
211 B
TypeScript
import { createAuthClient } from "better-auth/vue";
|
|
|
|
export const authClient = createAuthClient();
|
|
|
|
export const {
|
|
signIn,
|
|
signOut,
|
|
signUp,
|
|
useSession,
|
|
requestPasswordReset,
|
|
resetPassword,
|
|
} = authClient;
|