index.wxml 374 B

123456789
  1. <wxs src="../wxs/utils.wxs" module="utils"/>
  2. <wxs src="./index.wxs" module="computed"/>
  3. <view class="custom-class van-sticky" style="{{ computed.containerStyle({ fixed, height, zIndex }) }}">
  4. <view class="{{ utils.bem('sticky-wrap', { fixed }) }}"
  5. style="{{ computed.wrapStyle({ fixed, offsetTop, transform, zIndex }) }}">
  6. <slot/>
  7. </view>
  8. </view>