ludu-admin-vue3/src/views/Error/404.vue

8 lines
160 B
Vue
Raw Normal View History

<template>
<Error @error-click="push('/')" />
</template>
2023-06-21 19:14:34 +08:00
<script lang="ts" setup>
defineOptions({ name: 'Error404' })
const { push } = useRouter()
</script>