开源准备

This commit is contained in:
zhangtao
2024-12-10 17:39:26 +08:00
commit cbaf324e19
315 changed files with 39314 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
<template>
<a-result
status="404"
title="404"
sub-title="抱歉,您访问的页面不存在"
>
<template #extra>
<a-button type="primary" @click="toHome">返回首页</a-button>
</template>
</a-result>
</template>
<script lang="ts" setup>
import { useRouter } from "vue-router";
const router = useRouter();
const toHome = () => {
router.push('/');
};
</script>
<style lang="scss" scoped>
.ant-result {
padding: 48px 32px;
}
</style>