Files
admin-sjzx/src/components/XnWorkflow/chart/nodes/cStartEvent.vue
2024-05-06 13:57:06 +08:00

25 lines
343 B
Vue

<template>
<div class="node-wrap"></div>
</template>
<script>
export default {
props: {
modelValue: { type: Object, default: () => {} }
},
data() {
return {
childNode: {}
}
},
watch: {
modelValue() {
this.childNode = this.modelValue
}
},
mounted() {
this.childNode = this.modelValue
}
}
</script>