v-touch 有两种
1vue-touch
npm install vue-touch@next --save
//main.js中引入:
import VueTouch from 'vue-touch'
const app = createApp(App);
app.use(VueTouch)
使用滑动的时候是v-touch:swipeRight
2vue-touch-events
yarn add vue3-touch-events
import Vue3TouchEvents from 'vue3-touch-events';
const app = createApp(App);
app.use(Vue3TouchEvents);
使用滑动的时候是v-touch:swipe.right
不要混了 会触发不了