24 lines
478 B
Vue
24 lines
478 B
Vue
|
<script setup lang="ts">
|
||
|
const router = useRouter()
|
||
|
const { t } = useI18n()
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<main class="px-4 py-10 text-center text-teal-700 dark:text-gray-200">
|
||
|
<div>
|
||
|
<p class="text-4xl">
|
||
|
<carbon-warning class="inline-block" />
|
||
|
</p>
|
||
|
</div>
|
||
|
<router-view />
|
||
|
<div>
|
||
|
<button
|
||
|
class="btn m-3 text-sm mt-8"
|
||
|
@click="router.back()"
|
||
|
>
|
||
|
{{ t('button.back') }}
|
||
|
</button>
|
||
|
</div>
|
||
|
</main>
|
||
|
</template>
|