新版本官网优化完成

This commit is contained in:
2025-02-12 16:37:07 +08:00
parent 43a2e17a80
commit 3efdbfc662
547 changed files with 23001 additions and 28169 deletions

24
error.vue Normal file
View File

@@ -0,0 +1,24 @@
<script setup>
defineProps({
error: Object
})
</script>
<template>
<el-card class="m-5 w-screen-sm mt-[150px] m-auto">
<!-- 异常状态 -->
<el-result
icon="warning"
:title="`${error.message || '404 页面不存在'}`"
/>
</el-card>
<div class="text-center py-10 text-gray-400">
Powered by <a rel="nofollow" href="https://website.websoft.top" target="_blank" class="text-gray-400">·企业官网</a>
</div>
</template>
<style scoped lang="scss">
</style>