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
When utilizing the @click directive, an unexpected behavior occurs. If a user presses the mouse button down on an inner element, but releases the button outside of this area (on the mask element), the mask element is unexpectedly closed. This inconsistent behavior can lead to confusion and potentially poor user experience.
Address:
The issue can be traced to the code located at the following GitHub repository and file path:
Description
When utilizing the
@click
directive, an unexpected behavior occurs. If a user presses the mouse button down on an inner element, but releases the button outside of this area (on the mask element), the mask element is unexpectedly closed. This inconsistent behavior can lead to confusion and potentially poor user experience.Address:
The issue can be traced to the code located at the following GitHub repository and file path:
kun-galgame-nuxt3/components/kun/search/Search.vue
Lines 89 to 90 in 3585811
Solution
Use
@mousedown
instead of@click
.The text was updated successfully, but these errors were encountered: