项目历史

This commit is contained in:
lzp
2026-02-27 16:47:02 +08:00
parent 190357caf5
commit 834f163fce
7 changed files with 99 additions and 50 deletions

View File

@@ -1,6 +1,6 @@
<template>
<fullscreen-dialog v-model="dialogVisible" hide-destroy>
<flow-canvas />
<flow-canvas :config="config" />
</fullscreen-dialog>
</template>
@@ -9,9 +9,10 @@
import flowCanvas from './flow-canvas.vue'
import { ref } from 'vue'
const dialogVisible = ref(false)
const open = () => {
console.log('open')
const config = ref({})
const open = (options) => {
dialogVisible.value = true
config.value = options || {}
}
const close = () => {
dialogVisible.value = false