mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-28 18:54:09 +00:00
18 lines
521 B
Vue
18 lines
521 B
Vue
<template>
|
|
<TabPanel value="Workspace" class="h-full">
|
|
<WorkspacePanelContent />
|
|
</TabPanel>
|
|
<TabPanel value="WorkspacePlan" class="h-full">
|
|
<WorkspacePanelContent default-tab="plan" />
|
|
</TabPanel>
|
|
<TabPanel value="WorkspaceMembers" class="h-full">
|
|
<WorkspacePanelContent default-tab="members" />
|
|
</TabPanel>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import TabPanel from 'primevue/tabpanel'
|
|
|
|
import WorkspacePanelContent from '@/components/dialog/content/setting/WorkspacePanelContent.vue'
|
|
</script>
|