14 lines
270 B
Vue
14 lines
270 B
Vue
<template>
|
|
<IonPage>
|
|
<IonContent class="ion-padding ion-text-center">
|
|
<p>Signing you in...</p>
|
|
</IonContent>
|
|
</IonPage>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { IonPage, IonContent } from '@ionic/vue'
|
|
|
|
definePageMeta({ layout: false })
|
|
</script>
|