<SignUp />
The <SignUp />
component renders a UI for signing up users. The functionality of the <SignUp />
component is controlled by the instance settings you specify in your Clerk Dashboard, such as sign-in and sign-up options and social connections. You can further customize your <SignUp />
component by passing additional properties at the time of rendering.
INFO
The <SignUp/>
and <SignIn/>
components cannot render when a user is already signed in, unless the application allows multiple sessions. If a user is already signed in and the application only allows a single session, Clerk will redirect the user to the Home URL instead.
Props
Click here to see the full list of props available.
Usage
Below is basic implementation of the <SignUp />
component. You can use this as a starting point for your own implementation
<script>
import { SignUp } from 'vue-clerk'
</script>
<template>
<SignUp path="/sign-up" />
</template>