You can take Dialog Example 7 (Overflow), scroll it, close it and then show it again.
0.15.3 using latest Chrome/Opera/Edge
The scroll position for the dialog should reset to zero.
It could be that the dialog state is being cached, which i totally understand. But i was expecting the scroll position to be reset.
https://vuetifyjs.com/components/dialogs - Just try the codepen on example 7 and you'll see.
Unfortunately this is default behavior. If you wish to change it, you can manually change the scrollTop of the overflowed element programmatically.
Yeah, that's working with document.getElementsByClassName('dialog dialog--active')[0].scrollTop = 0
Please add to docs that now is possible to set the container in option atributte.
Like this:
goTo ( '#divId', { container: '#scroll-target' })
document.getElementsByClassName('v-dialog--active')[0].scrollTop = 0
Most helpful comment
Yeah, that's working with document.getElementsByClassName('dialog dialog--active')[0].scrollTop = 0