500.vue 171 B

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