mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-09-18 03:39:58 +08:00
20 lines
347 B
Vue
20 lines
347 B
Vue
<script setup lang="ts">
|
|
const router = useRouter()
|
|
</script>
|
|
|
|
<template>
|
|
<div class="flex-col-center h-full">
|
|
<img
|
|
src="@/assets/svg/error-not-found.svg"
|
|
alt=""
|
|
class="w-1/3"
|
|
>
|
|
<n-button
|
|
type="primary"
|
|
@click="router.push('/')"
|
|
>
|
|
{{ $t('app.backHome') }}
|
|
</n-button>
|
|
</div>
|
|
</template>
|