draggable.wxml 462 B

123456789101112131415
  1. <import src="../../common/template/button.wxml" />
  2. <wxs src="../../common/utils.wxs" module="_" />
  3. <template name="draggable">
  4. <t-draggable
  5. id="draggable"
  6. style="right: 16px; bottom: 32px; {{_._style([style, customStyle, moveStyle])}}"
  7. direction="{{draggable === true ? 'all' : draggable}}"
  8. bind:start="onStart"
  9. bind:move="onMove"
  10. bind:end="onEnd"
  11. >
  12. <template is="button" data="{{...buttonData}}" />
  13. </t-draggable>
  14. </template>