logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe git clone https://hacktivis.me/git/pleroma-fe.git

swipe_click.vue (297B)


  1. <template>
  2. <div
  3. v-bind="$attrs"
  4. @pointerdown="handlePointerDown"
  5. @pointermove="handlePointerMove"
  6. @pointerup="handlePointerUp"
  7. @pointercancel="handlePointerCancel"
  8. @click="handleNativeClick"
  9. >
  10. <slot />
  11. </div>
  12. </template>
  13. <script src="./swipe_click.js"></script>