allLikeMall/yudao-admin-vue3/src/views/Error/500.vue

8 lines
171 B
Vue
Raw Normal View History

2024-08-02 11:02:22 +08:00
<template>
<Error type="500" @error-click="push('/')" />
</template>
<script lang="ts" setup>
defineOptions({ name: 'Error500' })
const { push } = useRouter()
</script>