This repository was archived by the owner on Dec 26, 2018. It is now read-only.

Description
I use a v-touch component as a container to act on the swipeleft an swiperight event and it works as expected on desktop view.
But when switching on mobile, only some child elements seems to listen to.
Here is the code below (Vuejs 2.1.10 & vue-touch 2.0.0-beta.4):
import VueTouch from 'vue-touch'
VueTouch.config.swipe = {
direction: 'horizontal'
}
Vue.use(VueTouch, {name: 'v-touch'})
// ... and in the template:
<v-touch v-on:swipeleft="onSwipeRight2Left" v-on:swiperight="onSwipeLeft2Right">
// The page content
</v-touch>
Am I missing something?