snowy-work-flow-web
v1.0.1
Published
Snowy工作流设计器
Readme
插件介绍
Snowy工作流设计器
使用方法
npm install snowy-work-flow-web --save
本设计器提供能力:
- SnowyWorkFlowDesign 设计器
- SnowyWorkFlowChart 流程图
- SnowyWorkFlowLineChart 线型流程图
- core 核心core
- config 配置
import { createApp } from 'vue'
// 全局导入CSS
import 'snowy-work-flow-web/dist/style.css'
import App from './App.vue'
const app = createApp(App)
app.mount('#app')代码中哪里用到哪个,导入哪个
例如:
import { SnowyWorkFlowDesign } from 'snowy-work-flow-web'
<snowy-work-flow-design
v-model="modelDesignData.modelValue"
:form-field-list-value="formFieldListValue"
:record-data="recordData"
:sn-template-array="snTemplateArray"
:print-template-array="printTemplateArray"
:execution-listener-array="executionListenerArray"
:execution-listener-selector-for-custom-event-array="executionListenerSelectorForCustomEventArray"
:task-listener-array="taskListenerArray"
:selector-api-function="selectorApiFunction"
:participate-provider-selector-for-custom-array="participateProviderSelectorForCustomArray"
:custom-form-load="customFormLoad"
/>