Encountering an issue with my Vue/Vuetify Dialog that closes when clicking outside of it as expected.
The problem arises when there is a text field inside the dialog. If I accidentally select the content and release the mouse outside of the dialog, it also triggers the closing action. This could potentially confuse many users.
Here's a brief gif highlighting the problem:
I implemented a click:outside handler and upon logging the event, this data was captured:
(Event Data Here)
In summary, it seems to be registering as a "click" event even though it's triggered by a mouse release rather than an actual click. Is there a way to differentiate this particular event?
Appreciate any assistance provided :)