500.vue 180 B

12345678910
  1. <template>
  2. <Error type="500" @error-click="errorClick()" />
  3. </template>
  4. <script setup lang="ts">
  5. const { push } = useRouter()
  6. const errorClick = () => {
  7. push('/')
  8. }
  9. </script>