【调整】增加部署雨云

This commit is contained in:
cai
2026-01-13 17:47:39 +08:00
parent 4e49ca075a
commit 367c1a1096
1094 changed files with 179074 additions and 45 deletions

View File

@@ -0,0 +1,26 @@
import { defineComponent } from 'vue'
import WorkflowEditor from './components/WorkflowEditor'
import WorkflowNodeConfig from './components/WorkflowNodeConfig'
import styles from './index.module.css'
import '@vue-flow/core/dist/style.css'
import '@vue-flow/core/dist/theme-default.css'
import './flow.css'
/**
* 工作流组件
*/
export default defineComponent({
name: 'VueFlowWorkflow',
setup() {
return () => (
<div class={styles.workflowContainer}>
<div class={styles.workflowEditor}>
<WorkflowEditor />
</div>
<div class={styles.workflowConfig}>
<WorkflowNodeConfig />
</div>
</div>
)
},
})