为了账号安全,请及时绑定邮箱和手机立即绑定

vue 父组件监听子组件参数问题

vue 父组件监听子组件参数问题

qq_遁去的一_1 2018-12-28 22:14:50
子组件: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' 是手动传入的内容


查看完整回答
反对 回复 2019-01-24
  • 1 回答
  • 0 关注
  • 501 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信