Files
mom-web/src/views/Error/404.vue
2026-03-05 16:52:12 +08:00

8 lines
160 B
Vue

<template>
<Error @error-click="push('/')" />
</template>
<script lang="ts" setup>
defineOptions({ name: 'Error404' })
const { push } = useRouter()
</script>