From 35fb6378d172344d42ff7fd825cec116fed45cff Mon Sep 17 00:00:00 2001 From: bymyself Date: Tue, 4 Mar 2025 17:06:44 -0700 Subject: [PATCH] add webview store --- src/components/actionbar/ComfyActionbar.vue | 3 + src/components/graph/GraphCanvas.vue | 9 +- src/components/graph/GraphCanvasMenu.vue | 3 + .../topbar/BottomPanelToggleButton.vue | 7 +- src/components/topbar/WorkflowTabs.vue | 3 + src/components/webviews/WebviewContainer.vue | 29 +++++ src/stores/webviewStore.ts | 101 ++++++++++++++++++ src/views/GraphView.vue | 8 ++ 8 files changed, 161 insertions(+), 2 deletions(-) create mode 100644 src/components/webviews/WebviewContainer.vue create mode 100644 src/stores/webviewStore.ts diff --git a/src/components/actionbar/ComfyActionbar.vue b/src/components/actionbar/ComfyActionbar.vue index 8c150a32c..a6a7e3730 100644 --- a/src/components/actionbar/ComfyActionbar.vue +++ b/src/components/actionbar/ComfyActionbar.vue @@ -1,5 +1,6 @@