[V1] Drawer with overlay=true sets v-model back to false on page load?
-
Is there a reason for this, or is this a bug?
-
can you create a codepen with your issue? https://codepen.io/rstoenescu/pen/VgQbdx
-
Overlay means “on top of the page”, so it may hide stuff. By design, overlay is set to false on page load because of this reason (and some other).
-
Here you go:
https://codepen.io/temo-sayin/pen/MRXGRJEven if you set overlay=false, it’s not possible to show a drawer on page load. Am I doing something wrong?
Btw: I felt in love with Quasar. The framework, the documentation and community is just unbelievabe good – big respect!
-
data () { return { naviIsOpen: false, ... } }, mounted () { this.$nextTick(() => { this.naviIsOpen = true }) }