import { LGraphNode, LGraphGroup, LGraphCanvas } from '@comfyorg/litegraph' import { defineStore } from 'pinia' import { shallowRef } from 'vue' export const useTitleEditorStore = defineStore('titleEditor', () => { const titleEditorTarget = shallowRef(null) return { titleEditorTarget } }) export const useCanvasStore = defineStore('canvas', () => { const canvas = shallowRef(null) return { canvas } })