This commit is contained in:
yangsy
2025-08-14 13:06:22 +08:00
parent a1a73180b4
commit dd317df58a
9 changed files with 267 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
<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>