feat(projects): 添加常用组件、composables函数

This commit is contained in:
Soybean
2021-12-12 17:28:39 +08:00
parent e755caabf2
commit 230a50a4cf
87 changed files with 5424 additions and 2071 deletions

View File

@ -1,17 +1,8 @@
<template>
<div class="flex-center flex-col wh-full">
<exception-svg type="404" :color="theme.themeColor" />
<router-link to="/">
<n-button type="primary">回到首页</n-button>
</router-link>
</div>
<exception-base type="404" />
</template>
<script lang="ts" setup>
import { NButton } from 'naive-ui';
import { ExceptionSvg } from '@/components';
import { useThemeStore } from '@/store';
const theme = useThemeStore();
import { ExceptionBase } from './components';
</script>
<style scoped></style>