I`ve encountered this problem many times now…
Whenerver putting a <v-dialog>
with activator="parent"
into a <v-icon>
component – the dialog does not open when clicking the icon.’
e.g.:
<v-icon icon="mdi-check">
<v-dialog activator="parent">
WONT OPEN ON ICON CLICK
</v-dialog>
</v-icon>
Why does not trigger the activator like basically all other vuetify components?
Is there a quick workaround for this without adding custom click handlers etc…?