draggable.wxml 269 B

1234567891011
  1. <wxs src="../../common/utils.wxs" module="_" />
  2. <view
  3. class="{{classPrefix}} class {{prefix}}-class"
  4. style="{{_._style([style, customStyle])}}"
  5. bind:touchstart="onTouchStart"
  6. catch:touchmove="onTouchMove"
  7. bind:touchend="onTouchEnd"
  8. >
  9. <slot></slot>
  10. </view>