2022-12-06 21:38:59 +08:00

14 lines
263 B
Vue

<template>
<Error type="403" @error-click="errorClick()" />
</template>
<script setup lang="ts">
import { Error } from '@/components/Error'
import { useRouter } from 'vue-router'
const { push } = useRouter()
const errorClick = () => {
push('/')
}
</script>