mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-06 08:00:05 +00:00
Updated manager dialog components, pack cards, version selectors, and action buttons to work with the new manager API and state management structure.
36 lines
895 B
Vue
36 lines
895 B
Vue
<template>
|
|
<div
|
|
v-if="progressDialogContent.isExpanded"
|
|
class="px-4 py-2 flex items-center"
|
|
>
|
|
<TabMenu
|
|
v-model:activeIndex="activeTabIndex"
|
|
:model="tabs"
|
|
class="w-full border-none"
|
|
:pt="{
|
|
menu: { class: 'border-none' },
|
|
menuitem: { class: 'font-medium' },
|
|
action: { class: 'px-4 py-2' }
|
|
}"
|
|
/>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import TabMenu from 'primevue/tabmenu'
|
|
import { computed } from 'vue'
|
|
import { useI18n } from 'vue-i18n'
|
|
|
|
import { useManagerProgressDialogStore } from '@/stores/comfyManagerStore'
|
|
|
|
const progressDialogContent = useManagerProgressDialogStore()
|
|
const activeTabIndex = computed(() => {
|
|
return progressDialogContent.getActiveTabIndex()
|
|
})
|
|
const { t } = useI18n()
|
|
const tabs = [
|
|
{ label: t('manager.installationQueue') },
|
|
{ label: t('manager.failed', { count: 0 }) }
|
|
]
|
|
</script>
|