FlowVue/src/views/Error/403.vue
2023-06-21 19:14:34 +08:00

9 lines
172 B
Vue

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