vue父组件点击事件向子组件传递值
:这里是父组件里写的主要代码:父组件通过点击事件:<a-button @click="draft2()"style="margin-left: 15px;">草稿程序</a-button>事件方法:draft2(){this.draftid=1this.$refs.modal.show(this.draftid)},传递组件:<TaskModal@submit="ha
·
:这里是父组件里写的主要代码:
父组件通过点击事件:
<a-button @click="draft2()"style="margin-left: 15px;">草稿程序</a-button>
事件方法:
draft2(){
this.draftid=1
this.$refs.modal.show(this.draftid)
},
传递组件:
<TaskModal
@submit="handleRelatedTask(arguments)"
ref="modal"
:type="$route.query.deviceType"
></TaskModal>
子组件接收值:
show(data) {
this.visible = true
console.log(data+"接收值");
this.getDeviceTaskByParas(data)
}
更多推荐
已为社区贡献2条内容
所有评论(0)