Skip to content

Commit

Permalink
code review
Browse files Browse the repository at this point in the history
  • Loading branch information
alexisintech committed Dec 13, 2024
1 parent ac2edbd commit b3c46f9
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 9 deletions.
4 changes: 2 additions & 2 deletions docs/references/vue/use-auth.mdx
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
---
title: '`useAuth()`'
title: useAuth()
description: Access and manage authentication state in your Vue application with Clerk's useAuth() composable.
---

The `useAuth()` composable provides access to the current authentication state and methods to manage the active session in your Vue application.

## `useAuth()` returns
## Returns

<Properties>
- `isLoaded`
Expand Down
5 changes: 2 additions & 3 deletions docs/references/vue/use-clerk.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: '`useClerk()`'
title: useClerk()
description: Access and manage the Clerk instance in your Vue application with Clerk's useClerk() composable.
---

Expand All @@ -8,11 +8,10 @@ description: Access and manage the Clerk instance in your Vue application with C
The `useClerk()` composable provides access to the [`Clerk`](/docs/references/javascript/clerk/clerk) object, giving you the ability to build alternatives to any [Clerk component](/docs/components/overview).

## `useClerk()` returns
## Returns

The `useClerk()` composable returns the `Clerk` object, which includes all the methods and properties listed in the [`Clerk` reference](/docs/references/javascript/clerk/clerk).


## How to use the `useClerk()` composable

```vue
Expand Down
4 changes: 2 additions & 2 deletions docs/references/vue/use-sign-in.mdx
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
---
title: '`useSignIn()`'
title: useSignIn()
description: Access and manage sign-in state in your Vue application with Clerk's useSignIn() composable.
---

The `useSignIn()` composable provides access to the [`SignIn`](/docs/references/javascript/sign-in/sign-in) object, which allows you to check the current state of a sign-in attempt and manage the sign-in flow. You can use this to create a [custom sign-in flow](/docs/custom-flows/overview#sign-in-flow).

## `useSignIn()` returns
## Returns

<Properties>
- `isLoaded`
Expand Down
4 changes: 2 additions & 2 deletions docs/references/vue/use-user.mdx
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
---
title: '`useUser()`'
title: useUser()
description: Access and manage the current user's data in your Vue application with Clerk's useUser() composable.
---

The `useUser()` composable provides access to the current user's [`User`](/docs/references/javascript/user/user) object, which contains all the data for a single user in your application and provides methods to manage their account. This composable also allows you to check if the user is signed in and if Clerk has loaded and initialized.

## `useUser()` returns
## Returns

<Properties>
- `isLoaded`
Expand Down

0 comments on commit b3c46f9

Please sign in to comment.