vue-tap icon indicating copy to clipboard operation
vue-tap copied to clipboard

a v-tap directive of vue.js

Results 17 vue-tap issues
Sort by recently updated
recently updated
newest added

在事件元素中有动画时,连继点击会报错 [Intervention] Ignored attempt to cancel a touchend event with cancelable=false, for example because scrolling is in progress and cannot be interrupted.

当滑动有惯性时,会报这个错误 环境:win7+chrome模拟手机 ![snipaste_2018-06-21_11-15-59](https://user-images.githubusercontent.com/21106029/41696016-72d13a38-7544-11e8-9029-5f5049f3c6b8.png)

focusInput (params) { console.log('我点击了') params.event.currentTarget.focus() },

在新版本的ios中会存在点击无效的情况存在。safari浏览器和chorme都存在这个问题。我有一个导航栏 fixed在最上面,我滑动页面,浏览器会自动将输入网址隐藏掉。这时候就会存在点击无效的情况,但是写click就是正常的。

![image](https://user-images.githubusercontent.com/3273449/31756442-baef3bc2-b469-11e7-9cb6-df2f0d836d5e.png) ![image](https://user-images.githubusercontent.com/3273449/31756458-cdde9732-b469-11e7-8764-01e105ded026.png) 图一是绑定v-tap 到span上,图二是span:after 有transition, 只要开启transition这行css, v-tap只在第一个点击的元素上触发,后面其它的元素不触发该事件,注释掉transition 这行css就正常了。 为了验证是v-tap问题,我换了@click 事件,均都正常触发了事件执行 ![image](https://user-images.githubusercontent.com/3273449/31756603-817150f0-b46a-11e7-948c-a96da54fedeb.png)

4vue-tap.js?95dc:148 Uncaught TypeError: Cannot read property 'call' of undefined;在使用插件时出现这个提示,不知道是什么原因,引入不能使用

HTML: ```html {{ errorMessage }} Error ``` Javascript: ```javascript methods: { clearError () { this.errorMessage = '' }, addError () { this.errorMessage = 'Error!' } } ```

当列表元素使用v-tap时 滑动列表元素 在滑动过程中点击会进入点击事件 如何在滑动过程中点击停止滑动

![image](https://user-images.githubusercontent.com/11766130/27847488-65dbcbf6-6170-11e7-8dc3-d431bcf18304.png)