init: 初始系统模板

This commit is contained in:
TsMask
2023-09-05 14:38:23 +08:00
parent a5bc16ae4f
commit 1075c8ae4f
130 changed files with 22531 additions and 1 deletions

26
src/views/error/404.vue Normal file
View File

@@ -0,0 +1,26 @@
<script setup lang="ts"></script>
<template>
<a-result
status="404"
title="找不到匹配页面"
sub-title="对不起您正在寻找的页面不存在"
>
<template #extra>
<RouterLink :to="{ name: 'Index' }" :replace="true">
<a-button type="primary"> 返回首页 </a-button>
</RouterLink>
</template>
<a-typography>
<a-typography-title> 找不到网页 </a-typography-title>
<a-typography-paragraph>
1. 尝试检查URL的错误然后按浏览器上的刷新按钮
</a-typography-paragraph>
<a-typography-paragraph>
2. 尝试在我们的应用程序中找到其他内容
</a-typography-paragraph>
</a-typography>
</a-result>
</template>
<style lang="less" scoped></style>