index.wxml 364 B

123456789101112131415161718
  1. <t-tab-bar
  2. value="{{active}}"
  3. bindchange="onChange"
  4. split="{{false}}"
  5. >
  6. <t-tab-bar-item
  7. wx:for="{{list}}"
  8. wx:for-item="item"
  9. wx:for-index="index"
  10. wx:key="index"
  11. >
  12. <view class="custom-tab-bar-wrapper">
  13. <t-icon prefix="wr" name="{{item.icon}}" size="48rpx" />
  14. <view class="text">{{ item.text }}</view>
  15. </view>
  16. </t-tab-bar-item>
  17. </t-tab-bar>