mirror of
https://gitee.com/mirrors/AllinSSL.git
synced 2026-03-20 21:08:57 +08:00
【新增】私有证书
This commit is contained in:
26
frontend/apps/vue-flow/index.tsx
Normal file
26
frontend/apps/vue-flow/index.tsx
Normal 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>
|
||||
)
|
||||
},
|
||||
})
|
||||
Reference in New Issue
Block a user