mpvue使用微信小程序原生组件的坑

  • style
<scroll-view :style="{'height': '300px'}"></scroll-view>要设置高度
  • 原生的事件
<scroll-view  :style="{'height': '300px'}" :scroll-y="true" @scrolltolower="scrolltolower" @scroll="scroll" >
  <div :style="{'height': '200px','background-color':'red'}">tyuiolpo</div>
  <div class=""  :style="{'height': '200px','background-color':'red'}">dsdsd
  </div><div class=""  :style="{'height': '200px','background-color':'red'}">grytyju</div>
</scroll-view>

   数据部分
  methods: {
    scrolltolower(){
      console.log(7)
    },
    scroll(e) {
      console.log(6)
      console.log(e)
    },
 }

你可能感兴趣的:(解决方案)