shenrongliang
2025-05-26 e47692e7a147f98c298429a2eaa6a4085d6f795d
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>