du
2025-06-10 09cd9c30b4ddf4b29365c2d8693b2a2f0726552d
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>