<AuthRegister />

The <AuthRegister /> component that encapsulates the <AuthCredentialsRegisterForm />, <AuthEmailForm />, <AuthMagicSwitch /> and <AuthSocialProviders /> components.

It has all the needed logic to switch between the different register methods, and to handle the register process.

Usage

In Nuxt the components located inside a global folder are registered application-wide.
You can read more about this in the Nuxt documentation - Dynamic Components.
To use the component, simply add it to your template:

<AuthRegister />

But you can also import the component directly into your file:

The components are located in the @/components/global/Auth directory. To use the component, import it into your file:

import AuthRegister from '@/components/global/Auth/Register';

Config

For configuration's component, visit Config documentation.

Table of Contents