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

@ -8,7 +8,7 @@
<script lang="ts" setup>
import { SystemLogo } from '@/components';
import { useThemeStore } from '@/store';
import { useAppTitle, useLayoutConfig } from '@/composables';
import { useAppInfo, useLayoutConfig } from '@/composables';
interface Props {
/** 显示名字 */
@ -18,7 +18,7 @@ interface Props {
defineProps<Props>();
const theme = useThemeStore();
const title = useAppTitle();
const { title } = useAppInfo();
const { headerHeight } = useLayoutConfig();
</script>
<style scoped></style>