grid.wxml 469 B

12345678910111213141516
  1. <wxs src="../common/utils.wxs" module="_" />
  2. <view style="{{_._style([style, customStyle])}}" class="{{_.cls(classPrefix, [theme])}} {{prefix}}-class">
  3. <view wx:if="{{column > 0}}" class="{{classPrefix}}__content" style="{{ contentStyle }}">
  4. <slot />
  5. </view>
  6. <scroll-view
  7. wx:else
  8. scroll-x
  9. scroll-with-animation
  10. class="{{classPrefix}}__content"
  11. style="{{ 'white-space: nowrap;' + contentStyle }}"
  12. >
  13. <slot />
  14. </scroll-view>
  15. </view>