You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 26, 2018. It is now read-only.
In the next branch v-touch is used as a component, it's OK to use v-touch in general condition, but When inserting v-touch component into a slot, the touch action doesn't work.
My code is like this:
a.vue: <my-component> <v-touch tag="button" @tap="click">confirm</v-touch> </my-component>
In the next branch v-touch is used as a component, it's OK to use v-touch in general condition, but When inserting v-touch component into a slot, the touch action doesn't work.
My code is like this:
a.vue:
<my-component> <v-touch tag="button" @tap="click">confirm</v-touch> </my-component>
myComponent.vue:
<template> <div> <slot></slot> </div> </template>
When I clicked the confirm buttom, nothing happend and there is no event captured in Vue devtool.
The text was updated successfully, but these errors were encountered: