14 lines
261 B
Vue
Raw Normal View History

2022-11-17 17:49:19 +08:00
<template>
<Error type="403" @error-click="errorClick" />
</template>
2022-07-18 19:06:37 +08:00
<script setup lang="ts">
import { Error } from '@/components/Error'
2022-07-18 19:06:37 +08:00
import { useRouter } from 'vue-router'
const { push } = useRouter()
const errorClick = () => {
push('/')
}
</script>