Flex
3 天以前 56b0d4ad256aa08c5691b3d6480507f788d057b8
1
2
3
4
5
6
7
8
<template>
  <Error type="403" @error-click="push('/')" />
</template>
<script lang="ts" setup>
defineOptions({ name: 'Error403' })
 
const { push } = useRouter()
</script>