子组件:this.$emit('on-msg', '这是给父组件的信息')父组件:<template> <div> <child @on-msg="listenChildMsg"></child> </div></template><script>...export default { ... methods: { listenChildMsg (msg, msg2) { console.log(msg) // 这是给父组件的信息 console.log(msg2) // 这是需要手动传入内容 } }}</script>如何在父组件中使用子组件时 <child @on-msg="listenChildMsg"></child> 不影响第一个参数,传入第二个参数的内容?
1 回答
桃花长相依
TA贡献1860条经验 获得超8个赞
父组件绑定on-msg时,手动传入参数
<child @on-msg="listenChildMsg($event, 'msg2')"></child>
$event 为子组件给父组件的信息
'msg2' 是手动传入的内容
添加回答
举报
0/150
提交
取消