Vuetify: 1.5.14
Vue: 2.6.10
Browsers: Chrome 74.0.3729.108
OS: Windows 10
Only Snackbar closes
Dialog and Snackbar close

https://codepen.io/jloewe/pen/dEjGMw (v1.5.14)
https://codepen.io/jloewe/pen/ZNjQrr (v2.0.0-alpha.20)
Workaround is to add persistent to the dialog.
It happens also in normal (not fullscreen) dialogs https://codepen.io/anon/pen/zgGLgK which makes the workaround not so great in this case
Any update on this? The workaround (persistent prop) doesn't work for me either.
Workaround is to add
persistentto the dialog.
I'm not finding this to be true (#9378). How are you getting this to work?
I believe this bug is a regression, since the problem doesn't exist in my v1.3 project.
@185driver right, that doesn鈥檛 work for me either, very frustrating.
@185driver there's another issue at play as well. Conflict between hide-overlay and persistent #8697
With fullscreen prop hide-overlay is assumed thus persistent wont work. on your codepen dialog, if you remove hide-overlay it works
@MajesticPotatoe I just tried removing hide-overlay too and it still doesn't work, here are my props:
<v-dialog
v-model="dialog"
fullscreen
persistent
transition="dialog-bottom-transition"
>
@MajesticPotatoe Thanks. Indeed, that was noted in the issue I posted. I wasn't aware that fullscreen pulled in hide-overlay functionality automatically. Good to know, and it makes sense. Actually, to me, fullscreen should naturally pull in persistent too, then, as clicking outside the dialog isn't practically possible (or shouldn't be).
@payammeyer that's right, but it's because you're using fullscreen too, which pulls in hide-overlay by default. @MajesticPotatoe was referring to a normal dialog in his comment.
Oh my mistake, thanks for the clarification, either way it鈥檚 really not a workaround for me and I would indeed call it a regression.
Bless @jacekkarczmarczyk for removing the p:low tag. Without a workaround, this issue is a pain. Ha. Thanks for all you guys do!
@payammeyer your issue pertains to 8697 which is marked as a regression. This issue is slightly different but does have some overlap.
@MajesticPotatoe thanks, I'll start watching that issue.
I'm having the same issue here,
It seems that if the snackbar has been created inside of the dialog or outside (but still in the same component), the persistent prop does fix the problem.
But if you have the snackbar created and managed elsewhere (in Layout component for example), i'm still getting the closing trigger of any of my dialogs
@FekihTaoufik interesting observation, my snackbars are indeed created elsewhere and triggered to display via an event.
It seems that anything that has a fixed position and clickable, does trigger the close:outer event of any
fullscreen dialog (even with persistent prop).
I'm facing the very same issue, any help would be greatly appreciated.
Same issue here, with the dialog full screen component. The workaround by @185driver works but not with fullscreen props ... 馃槩
Found a temporary fix here that worked for me. It is not the marked answer but works nicely.
https://stackoverflow.com/questions/49627750/vuetify-closing-snackbar-without-closing-dialog
"For anyone still looking for a good solution: add <div class="v-menu__content--active" style="display:none; z-index:1000;">
@NavidMitchell This is a fantastic workaround. Thanks for sharing it. This issue affects my apps daily (due to snackbars with clickable buttons) so your solution is a welcome relief. I modified the markup slightly after some testing, but it works the same, in case someone is interested:
<v-snackbar
v-model="snackbar"
bottom
>
<div
v-show="false"
class="v-menu__content--active"
/>
{{ snackText }}
</v-snackbar>
Damn that's sneaky. Note this will cause the dialog to have a higher z-index than the snackbar if the snackbar is open first.
Is the higher z-index issue alleviated by setting it to 1000 as @NavidMitchell suggested?
No, you should set z-index on the dialog instead.
@MajesticPotatoe Thanks. Indeed, that was noted in the issue I posted. I wasn't aware that
fullscreenpulled inhide-overlayfunctionality automatically. Good to know, and it makes sense. Actually, to me,fullscreenshould naturally pull inpersistenttoo, then, as clicking outside the dialog isn't practically possible (or shouldn't be).
this would not be practical either, i was facing this issues and thought i could just add persist on the dialog until users started wondering why pressing escape on the keyboard dose not close the dialog, my solution now is remove the persistent from the dialog and also remove the close button from the snackbar so it timeout by it self
Some observations after upgrading to v2.3.0...here's an updated codepen too:
v-snackbar no longer displays properly when triggered within a fullscreen dialog. The structural changes to v-snackbar made in PR #11542 seem to be the reason.persistent prop to v-dialog. This was the original workaround that didn't work in some cases. Now it does, but it comes with a side effect...dismissing the snackbar causes the persistent click animation to fire, which is an odd effect on a fullscreen dialog. Adding the no-click-animation prop along with the persistent prop resolves this.v-dialog behavior in fullscreen or non-fullscreen mode along with hide-overlay and persistent prop use. I don't know what the current v-dialog status is for these props, but my suggestion for resolving and closing this issue would be to consider automatically adding hide-overlay, persistent and no-click-animation props (their associated classes, actually) anytime the fullscreen prop is invoked. It seems natural that they would always be included in a fullscreen scenario, and would eliminate the need to add them manually.@185driver
Most helpful comment
@NavidMitchell This is a fantastic workaround. Thanks for sharing it. This issue affects my apps daily (due to snackbars with clickable buttons) so your solution is a welcome relief. I modified the markup slightly after some testing, but it works the same, in case someone is interested: