Hello from MCP server

List Files | Just Commands | Repo | Logs

← back |
<template>
  <BaseLayoutNoAuth title="Logout">
    <ion-grid :fixed="true">
      <ion-row>
        <ion-col>
          <p class="ion-text-center">Logged Out!</p>
          <hr />
          <p class="ion-text-center">
            <RouterLink to="/auth/login">Login</RouterLink>
          </p>
        </ion-col>
      </ion-row>
    </ion-grid>
  </BaseLayoutNoAuth>
</template>

<script setup lang="ts">
import BaseLayoutNoAuth from "@/components/BaseLayoutNoAuth.vue";
import { IonGrid, IonRow, IonCol } from "@ionic/vue";
</script>