mirror of
https://gitee.com/myxzgzs/boyue-vue-pro.git
synced 2025-08-08 16:32:46 +08:00
11 lines
180 B
Vue
11 lines
180 B
Vue
<template>
|
|
<Error type="403" @error-click="errorClick()" />
|
|
</template>
|
|
<script setup lang="ts">
|
|
const { push } = useRouter()
|
|
|
|
const errorClick = () => {
|
|
push('/')
|
|
}
|
|
</script>
|