feat(projects): 工作台页面布局

This commit is contained in:
Soybean
2021-10-25 11:56:17 +08:00
parent d246450dfe
commit 4c85569b76
5 changed files with 37 additions and 11 deletions

View File

@ -0,0 +1,8 @@
<template>
<div class="bg-light dark:bg-dark rounded-16px">
<slot></slot>
</div>
</template>
<script setup lang="ts"></script>
<style scoped></style>

View File

@ -2,5 +2,6 @@ import CountTo from './CountTo/index.vue';
import IconClose from './IconClose/index.vue';
import ButtonTab from './ButtonTab/index.vue';
import ChromeTab from './ChromeTab/index.vue';
import ShadowCard from './ShadowCard/index.vue';
export { CountTo, IconClose, ButtonTab, ChromeTab };
export { CountTo, IconClose, ButtonTab, ChromeTab, ShadowCard };

View File

@ -1,2 +1,2 @@
export { AppProviderContent, SystemLogo, ExceptionSvg, LoginBg, BannerSvg, HoverContainer } from './common';
export { CountTo, IconClose, ButtonTab, ChromeTab } from './custom';
export { CountTo, IconClose, ButtonTab, ChromeTab, ShadowCard } from './custom';