Files
hb_pqs_web/src/views/flow_task/todo/detail/flow.vue

25 lines
315 B
Vue
Raw Normal View History

2025-01-09 19:02:44 +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>