Files
ndm-web-client/src/pages/not-found-page.vue
yangsy dd317df58a chore
2025-08-14 13:06:22 +08:00

21 lines
434 B
Vue

<script setup lang="ts">
import { NResult, NButton } from 'naive-ui';
import { useRouter } from 'vue-router';
const router = useRouter();
const goHome = () => {
router.push('/');
};
</script>
<template>
<NResult status="404" title="404 页面不存在" style="margin-top: 50px">
<template #footer>
<NButton @click="goHome">返回</NButton>
</template>
</NResult>
</template>
<style scoped lang="scss"></style>