<template>
<div class="auth-container">
<SignInButton />
<SignUpButton />
<SignOutButton />
<UserProfile />
</div>
</template>
<script setup>
import {
SignInButton,
SignUpButton,
SignOutButton,
UserProfile
} from '@autenticar/vue'
</script><template>
<SignInButton />
</template>
<script setup>
import { SignInButton } from '@autenticar/vue'
</script><template>
<SignUpButton />
</template>
<script setup>
import { SignUpButton } from '@autenticar/vue'
</script><template>
<SignOutButton />
</template>
<script setup>
import { SignOutButton } from '@autenticar/vue'
</script><template>
<UserProfile />
</template>
<script setup>
import { UserProfile } from '@autenticar/vue'
</script><template>
<AuthSwitcher />
</template>
<script setup>
import { AuthSwitcher } from '@autenticar/vue'
</script><template>
<SignInFullScreenButton />
</template>
<script setup>
import { SignInFullScreenButton } from '@autenticar/vue'
</script><template>
<SignUpFullScreenButton />
</template>
<script setup>
import { SignUpFullScreenButton } from '@autenticar/vue'
</script>| Componente | Categoria | Descrição |
|---|---|---|
SignInButton | Individual | Botão de login |
SignUpButton | Individual | Botão de cadastro |
SignOutButton | Individual | Botão de logout |
UserProfile | Individual | Perfil do usuário |
AuthSwitcher | Troca Automática | Alterna entre login e cadastro |
SignInFullScreenButton | Tela Cheia | Login em modal fullscreen |
SignUpFullScreenButton | Tela Cheia | Cadastro em modal fullscreen |