du
2025-03-25 97b418553da5db33bfface90fbe78246c96a3a13
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>