mirror of
https://gitee.com/myxzgzs/boyue-ui-admin-vue3
synced 2025-08-11 01:42:42 +08:00
9 lines
172 B
Vue
9 lines
172 B
Vue
<template>
|
|
<Error type="403" @error-click="push('/')" />
|
|
</template>
|
|
<script lang="ts" setup>
|
|
defineOptions({ name: 'Error403' })
|
|
|
|
const { push } = useRouter()
|
|
</script>
|