dengzedong
2024-11-27 9b24e4927f3fa29dd96597a1f918b88e6f304682
1
2
3
4
5
6
7
<template>
  <Error type="500" @error-click="push('/')" />
</template>
<script lang="ts" setup>
defineOptions({ name: 'Error500' })
const { push } = useRouter()
</script>