first commit

This commit is contained in:
muzi
2025-06-16 14:42:26 +08:00
commit 6f06721506
149 changed files with 56883 additions and 0 deletions

26
src/layouts/NotFound.vue Normal file
View File

@ -0,0 +1,26 @@
<script setup lang="ts">
const router = useRouter();
const back = () => {
router.replace('/');
};
</script>
<template>
<div class="content">
<a-result class="result" status="404" subtitle="页面跑路了" />
<div class="operation-row">
<a-button key="back" type="primary" @click="back">返回</a-button>
</div>
</div>
</template>
<style scoped lang="less">
.content {
position: absolute;
top: 50%;
left: 50%;
margin-left: -95px;
margin-top: -121px;
text-align: center;
}
</style>