子组件
代码语言:javascript复制 <button type="primary" bindtap="getoption">确定</button>
data: {
},
methods: {
getoption(e) {
this.triggerEvent('index', {i:1})//triggerEvent广播数据 index为广播事件
}
}
父组件
代码语言:javascript复制 <share bind:index="getoption"></share>
getoption(e){
console.log(e.detail.i)
}