aboutsummaryrefslogtreecommitdiff
path: root/src/components/pinch_zoom/pinch_zoom.vue
blob: 18d69719781ceab21f45a4c5523e5ad6f494b5a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
<template>
  <pinch-zoom
    class="pinch-zoom-parent"
    v-bind="$attrs"
    v-on="$listeners"
  >
    <slot />
  </pinch-zoom>
</template>

<script src="./pinch_zoom.js"></script>