From b3c46f9c1ad5600cd90295256e690093f90f0690 Mon Sep 17 00:00:00 2001 From: Alexis Aguilar <98043211+alexisintech@users.noreply.github.com> Date: Fri, 13 Dec 2024 16:44:20 -0500 Subject: [PATCH] code review --- docs/references/vue/use-auth.mdx | 4 ++-- docs/references/vue/use-clerk.mdx | 5 ++--- docs/references/vue/use-sign-in.mdx | 4 ++-- docs/references/vue/use-user.mdx | 4 ++-- 4 files changed, 8 insertions(+), 9 deletions(-) diff --git a/docs/references/vue/use-auth.mdx b/docs/references/vue/use-auth.mdx index f3b8cfa5c8..f3d5197dd9 100644 --- a/docs/references/vue/use-auth.mdx +++ b/docs/references/vue/use-auth.mdx @@ -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 - `isLoaded` diff --git a/docs/references/vue/use-clerk.mdx b/docs/references/vue/use-clerk.mdx index 780ff55ba1..bbad732390 100644 --- a/docs/references/vue/use-clerk.mdx +++ b/docs/references/vue/use-clerk.mdx @@ -1,5 +1,5 @@ --- -title: '`useClerk()`' +title: useClerk() description: Access and manage the Clerk instance in your Vue application with Clerk's useClerk() composable. --- @@ -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 diff --git a/docs/references/vue/use-sign-in.mdx b/docs/references/vue/use-sign-in.mdx index 642d3a5d3b..47b9644981 100644 --- a/docs/references/vue/use-sign-in.mdx +++ b/docs/references/vue/use-sign-in.mdx @@ -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 - `isLoaded` diff --git a/docs/references/vue/use-user.mdx b/docs/references/vue/use-user.mdx index 5a1d60dfb0..e2883e8576 100644 --- a/docs/references/vue/use-user.mdx +++ b/docs/references/vue/use-user.mdx @@ -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 - `isLoaded`