mirror of
https://github.com/better-auth/better-auth.git
synced 2026-05-26 00:46:44 -05: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;
|