Skip to content

workflow drawing and configuration based on vue3

Notifications You must be signed in to change notification settings

wangzhencq/workflow-vue

 
 

Repository files navigation

workflow-vue

Workflow drawing and configuration based on vue3

Vue3 License Document Npm

用法

<template>
  <WorkflowVue ref="workflowRef"></WorkflowVue>
</template>

<script setup>
import { onMounted, ref } from 'vue'
import WorkflowVue from 'workflow-vue'
import 'workflow-vue/dist/style.css'

import config from './config'

const workflowRef = ref()

onMounted(() => {
  workflowRef.value?.setConfig(config)
})
<script>

About

workflow drawing and configuration based on vue3

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 69.7%
  • Vue 25.0%
  • SCSS 3.8%
  • Other 1.5%