index.wxml 472 B

123456789101112131415
  1. <view class="wux-class {{ classes.wrap }}" style="{{ tabbarStyle }}">
  2. <wux-safe-area
  3. safeArea="{{ safeArea }}"
  4. wrapStyle="{{ { backgroundColor } }}"
  5. wx:if="{{ safeArea && position === 'top' }}"
  6. />
  7. <view class="{{ classes.tabbar }}">
  8. <slot></slot>
  9. </view>
  10. <wux-safe-area
  11. safeArea="{{ safeArea }}"
  12. wrapStyle="{{ { backgroundColor } }}"
  13. wx:if="{{ safeArea && position === 'bottom' }}"
  14. />
  15. </view>