天天看點

vue監聽左右滑動事件

引入 vue-touch

1npm insall [email protected]

2在main.js中将vue-touch注入到vue

import VueTouch from 'vue-touch'
Vue.use(VueTouch, {name: 'v-touch'})
           

3用vur-touch将需要滑動的包裹起來

<v-touch v-on:swipeleft="leftChangeImg"height="500px" v-on:swiperight="leftChangeImg">
    <img :src="this.imgSrc" class="imgStyle">
    </v-touch>