mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-03-06 21:50:05 +00:00
26 lines
700 B
Vue
26 lines
700 B
Vue
<template>
|
|
<Button
|
|
v-show="bottomPanelStore.bottomPanelTabs.length > 0"
|
|
severity="secondary"
|
|
text
|
|
:aria-label="$t('menu.toggleBottomPanel')"
|
|
@click="bottomPanelStore.toggleBottomPanel"
|
|
v-tooltip="{ value: $t('menu.toggleBottomPanel'), showDelay: 300 }"
|
|
>
|
|
<template #icon>
|
|
<i-material-symbols:dock-to-bottom
|
|
v-if="bottomPanelStore.bottomPanelVisible"
|
|
/>
|
|
<i-material-symbols:dock-to-bottom-outline v-else />
|
|
</template>
|
|
</Button>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import Button from 'primevue/button'
|
|
|
|
import { useBottomPanelStore } from '@/stores/workspace/bottomPanelStore'
|
|
|
|
const bottomPanelStore = useBottomPanelStore()
|
|
</script>
|