feat(projects): 添加exception页面:403,404,500

This commit is contained in:
Soybean
2021-09-09 18:40:38 +08:00
parent ff4a09c452
commit d012c4ecf2
30 changed files with 7896 additions and 38 deletions

View File

@ -1,6 +1,18 @@
<template>
<div>登陆页</div>
<div class="flex w-full h-full">
<div class="flex-center w-1/2 h-full">
<h3>登录</h3>
</div>
<div class="flex-center w-1/2 h-full bg-primary bg-opacity-25">
<banner-svg class="w-400px h-400px" type="1" :color="theme.themeColor" />
</div>
</div>
</template>
<script lang="ts" setup></script>
<script lang="ts" setup>
import { BannerSvg } from '@/components';
import { useThemeStore } from '@/store';
const theme = useThemeStore();
</script>
<style scoped></style>