You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
498 B
32 lines
498 B
<template>
|
|
<div>
|
|
<!--<bpmn-modeler
|
|
ref="refNode"
|
|
:xml="xmlData"
|
|
:is-view="true"
|
|
:taskList="taskData"
|
|
/>-->
|
|
<flow-view :xmlData="xmlData"/>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import bpmnModeler from '@/components/Process/index'
|
|
import FlowView from './flowview'
|
|
|
|
export default {
|
|
name: "Flow",
|
|
components: {
|
|
bpmnModeler,
|
|
FlowView
|
|
},
|
|
props: {
|
|
xmlData: {
|
|
type: String,
|
|
default: ''
|
|
},
|
|
},
|
|
data() {
|
|
return {};
|
|
}
|
|
};
|
|
</script>
|
|
|