Flex
2025-06-12 1d29cc7ed2fd9e9f102298fbb08c0f7fe7db50b7
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>