index.vue 288 B

12345678910111213
  1. <template>
  2. <div class="w-screen h-screen flex justify-center items-center">
  3. <ILoader class="w-6 h-6 text-foreground opacity-75 group-hover:opacity-100" />
  4. </div>
  5. </template>
  6. <script setup lang="ts">
  7. definePageMeta({
  8. layout: 'none',
  9. })
  10. window.location.href = '/auth'
  11. </script>