Add autosave feature (#3330)

Co-authored-by: Benjamin Lu <templu1107@proton.me>
This commit is contained in:
Benjamin Lu
2025-04-06 18:48:00 -04:00
committed by GitHub
parent ac53296b2e
commit fa75614dc3
6 changed files with 416 additions and 10 deletions

View File

@@ -59,6 +59,7 @@ import { useCopy } from '@/composables/useCopy'
import { useGlobalLitegraph } from '@/composables/useGlobalLitegraph'
import { useLitegraphSettings } from '@/composables/useLitegraphSettings'
import { usePaste } from '@/composables/usePaste'
import { useWorkflowAutoSave } from '@/composables/useWorkflowAutoSave'
import { useWorkflowPersistence } from '@/composables/useWorkflowPersistence'
import { CORE_SETTINGS } from '@/constants/coreSettings'
import { i18n } from '@/i18n'
@@ -233,6 +234,7 @@ onMounted(async () => {
useContextMenuTranslation()
useCopy()
usePaste()
useWorkflowAutoSave()
comfyApp.vueAppReady = true