Vue - ^2.3.3
Vuetify - ^0.12.7
Dialog shouldn't open.
It does open even if the v-btn
activator was set to disabled
This is because the activator slot wraps the element. The disabled button isn't what is propagating the click, the activator slot is. There are two ways you can solve this. Don't use the activator slot, or, the preferred method, add the disabled prop to the actual dialog.
:100: Thanks @johnleider
Most helpful comment
This is because the activator slot wraps the element. The disabled button isn't what is propagating the click, the activator slot is. There are two ways you can solve this. Don't use the activator slot, or, the preferred method, add the disabled prop to the actual dialog.