微信小程序-scroll-view 中 flex 布局失效

scroll-view 中 flex 布局失效

今天做微信小程序项目的时候,想把商品横着展示 滑动,使用flex布局的时候,怎么也不起作用。
百度琢磨了半天,终于找到解决方法了
在 scroll-view 中加入 enable-flex = true 即可

<scroll-view scroll-y="true" enable-flex="true">
    code...
  scroll-view>

你可能感兴趣的:(微信小程序,前端)