mirror of
https://github.com/yudaocode/yudao-ui-admin-vue3.git
synced 2026-05-07 12:11:24 +00: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>
|