【新增】私有证书

This commit is contained in:
cai
2025-09-03 15:15:59 +08:00
parent efd052a297
commit 954cd1638d
442 changed files with 76787 additions and 7483 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>
)
},
})