mirror of
https://github.com/yudaocode/yudao-ui-admin-vue3.git
synced 2026-05-07 06:01:37 +00:00
8 lines
160 B
Vue
8 lines
160 B
Vue
<template>
|
|
<Error @error-click="push('/')" />
|
|
</template>
|
|
<script lang="ts" setup>
|
|
defineOptions({ name: 'Error404' })
|
|
const { push } = useRouter()
|
|
</script>
|