微信小程序子组件向父组件传值

子组件

 <button type="primary" bindtap="getoption">确定</button>
 data: {
  },
  methods: {
    getoption(e) {
      this.triggerEvent('index', {i:1})//triggerEvent广播数据 index为广播事件
    }
  }

父组件

 <share bind:index="getoption"></share>
 getoption(e){
   console.log(e.detail.i)
 }

你可能感兴趣的:(Weapp)