-
Notifications
You must be signed in to change notification settings - Fork 338
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Popover @click isn't triggered on IOS #1024
Comments
Any other people experiencing this? We can't get any clicks to work in our production environment with the latest versions. |
Same here, inside a Tauri app no @click events are registered for any button, it just closes before triggering anything. The last version that works with the expected behaviour for me is 5.0.3. |
Yes i do use the v-close-popper directive on the buttons. |
@Akryum Same problem for me v5.2.2. It works on desktop and android, but not on iphone and ipad. <template>
<VDropdown>
<a href="javascript: void(0)">
More <i class="mdi mdi-chevron-down"></i>
</a>
<template #popper>
<ul>
<li
@click="doSomething();"
v-close-popper>
<span><i class="mdi mdi-file-document-outline"></i> View file</span>
</li>
</ul>
</template>
</VDropdown>
</template>
<script setup>
const doSomething = () => {
alert('do something');
}
</script> |
It does work when i replace |
Hi! Thanks for your efforts on this, |
Experiencing the same issue. Currently using the |
Any updates on this issue? |
From the quick look that i had at the code it has to do with the ontouch that is used on mobile in the v-close-popper.ts. |
We're experiencing the same thing. Why isn't anything done regarding this issue? |
+1 |
Sadly it still seems broken on IOS and ipadOS devices.
Using @click or @mousedown both don't work with ios.
The popper closes before it triggers the @click or the @mousedown.
We tested it on 4 iphones and 1 ipad and it doesn't work on those devices, we tested safari and chrome.
It does work on MacOS, Windows, Linux and Android.
The text was updated successfully, but these errors were encountered: