index.wxml 341 B

1234567891011
  1. <view class="anchor-wrapper" style="{{anchorWrapperStyle}}">
  2. <view class="anchor" style="{{anchorStyle}}">
  3. <view wx:if="{{anchorSlot.height!==0}}" class="anchor-slot">
  4. <slot></slot>
  5. </view>
  6. <view wx:if="{{anchorSlot.height===0}}" class="anchor-default l-anchor-class">
  7. {{anchorText}}
  8. </view>
  9. </view>
  10. </view>