收藏
回答

<button open-type="share" @click="ceshi"> 提高事件优先级?

点击分享过后如何先执行打印1,后执行打印2

<template>
    <button class="share" open-type="share" @click="ceshi()">分享</button>
<
</template>


<script>
export default {
  onShareAppMessagefunction (ops{
    console.log('2')
  },
  methods:{
    ceshi(){
      console.log('1')
    }
  }
};
</script>


<style lang="scss" scoped></style>


回答关注问题邀请回答
收藏

1 个回答

  • 乐豆信息
    乐豆信息
    2021-01-20

    这个是默认行为,除非你再加一个button通过冒泡的形式先执行你方法事件再onShareAppMessage

    <button open-type="share">
       <button bindtap="handleShare">分享</button>
     </button>
    
    2021-01-20
    有用
    回复
登录 后发表内容
问题标签