mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-12-25 05:50:18 +08:00
refactor(projects): 路由声明重构,添加composables,BaseLayout进行中,文件夹规范
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
<template>
|
||||
<div v-if="theme.fixedHeaderAndTab" :style="{ height: headerAndMultiTabHeight }"></div>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import { useThemeStore } from '@/store';
|
||||
import { useLayoutConfig } from '@/composables';
|
||||
|
||||
const theme = useThemeStore();
|
||||
const { headerAndMultiTabHeight } = useLayoutConfig();
|
||||
</script>
|
||||
<style scoped></style>
|
||||
Reference in New Issue
Block a user