储能智慧云小程序
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

draggable.wxml 454B

1234567891011121314
  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. t-class="{{prefix}}}-fab__button"
  8. direction="{{draggable === true ? 'all' : draggable}}"
  9. bind:move="onMove"
  10. >
  11. <template is="button" data="{{...buttonData}}" />
  12. </t-draggable>
  13. </template>