<scroll-view
  class="dm-tabs {{widthType === 'auto'?'dm-tabs-auto-width':''}} {{className}}"
  onTap="onDmTap"
  scroll-x="{{true}}"
  scroll-with-animation="{{true}}"
  scroll-into-view="item{{activeIndex}}"
>
  <view class="dm-tabs-flex">
    <view
      id="item{{index}}"
      a:for="{{texts}}"
      data-index="{{index}}"
      class="dm-tabs-item {{index === activeIndex?'dm-tabs-item-active':''}} {{itemClassName}}"
      onTap="onDmItemTap"
    >
      <view class="dm-tabs-item-inner">{{item}}</view>
      <view
        a:if="{{index === activeIndex}}"
        class="dm-tabs-item-active-bottom"
      ></view>
    </view>
  </view>
</scroll-view>