generated from pascalmartineau/wp-skeleton
13 lines
262 B
Vue
13 lines
262 B
Vue
<script setup lang="ts">
|
|
definePageMeta({ layout: "auth" });
|
|
|
|
const { loggedIn } = useUserSession();
|
|
|
|
useSeoMeta({ title: loggedIn.value ? "Déconnexion" : "Connexion" });
|
|
</script>
|
|
|
|
<template>
|
|
<LogoutForm v-if="loggedIn" />
|
|
<LoginForm v-else />
|
|
</template>
|