mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-12-24 13:30:19 +08:00
13 lines
349 B
Vue
13 lines
349 B
Vue
<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>
|