2023-01-18 12:14:58 +08:00

11 lines
180 B
Vue

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