2023-04-23 14:19:03 +08:00
|
|
|
<script setup lang="ts">
|
|
|
|
const router = useRouter()
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<main p="x4 y10" text="center teal-700 dark:gray-200">
|
|
|
|
<div text-4xl>
|
|
|
|
<div i-carbon-warning inline-block />
|
|
|
|
</div>
|
|
|
|
<div>Not found</div>
|
2023-04-23 23:14:52 +08:00
|
|
|
<div class="bg-primary">
|
|
|
|
<ABtn>test</ABtn>
|
2023-05-26 19:53:05 +08:00
|
|
|
<button btn text-sm m="3 t8" @click="router.back()">
|
2023-04-23 14:19:03 +08:00
|
|
|
Back
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</main>
|
|
|
|
</template>
|