du
2025-04-10 eb82b909338aaf9212ae6f4d695f07d2c214bc10
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>