eight
2024-08-28 32af4c7211d1bf20a44ba1d96a9c7431f44ecfa8
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>