13 lines
228 B
Vue
13 lines
228 B
Vue
<script setup lang="ts">
|
|
const { isRedirecting } = useAuthConnexion();
|
|
onBeforeMount(() => {
|
|
isRedirecting.value = false;
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<div id="page-connexion">
|
|
<SectionAuthConnexion />
|
|
</div>
|
|
</template>
|