custom-swiper-item.axml 380 B

123456789101112
  1. <swiper-item class='{{className}}' style='{{style}}'>
  2. <view class="am-swiper-item-wrap" a:if="{{onTap}}" onTap='tapHandler'>
  3. <slot></slot>
  4. </view>
  5. <view class="am-swiper-item-wrap" a:if="{{catchTap}}" catchTap="catchTapHandler">
  6. <slot></slot>
  7. </view>
  8. <view class="am-swiper-item-wrap" a:else>
  9. <slot></slot>
  10. </view>
  11. </swiper-item>