TOPVERSE_Official/pages/[...all].vue

16 lines
292 B
Vue
Raw Normal View History

2023-04-23 14:19:03 +08:00
<script setup lang="ts">
const router = useRouter()
</script>
<template>
2023-05-31 11:02:15 +08:00
<main p="x4 y-50" text="center teal-700 dark:gray-200">
2023-04-23 14:19:03 +08:00
<div text-4xl>
<div i-carbon-warning inline-block />
</div>
2023-05-31 11:02:15 +08:00
<h2 text-4xl p-12>
{{ $t('waiting') }}
</h2>
2023-04-23 14:19:03 +08:00
</main>
</template>