12 lines
183 B
Vue
12 lines
183 B
Vue
|
<template>
|
||
|
<pinch-zoom
|
||
|
class="pinch-zoom-parent"
|
||
|
v-bind="$attrs"
|
||
|
v-on="$listeners"
|
||
|
>
|
||
|
<slot />
|
||
|
</pinch-zoom>
|
||
|
</template>
|
||
|
|
||
|
<script src="./pinch_zoom.js"></script>
|