jhprjv2/ruoyi-ui/src/views/flowable/task/myProcess/detail/flow.vue

25 lines
314 B
Vue
Raw Normal View History

2023-08-10 21:09:49 +08:00
<template>
<div>
<flow-view :flowData="flowData"/>
</div>
</template>
<script>
import FlowView from './flowview'
export default {
name: "Flow",
components: {
FlowView
},
props: {
flowData: {
type: Object,
default: () => {}
}
},
data() {
return {};
}
};
</script>