We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f8fc06 commit 0e71d2fCopy full SHA for 0e71d2f
src/components/layout/QLayoutDrawer.js
@@ -117,11 +117,7 @@ export default {
117
this.layout.__animate()
118
},
119
$route () {
120
- if (this.mobileOpened) {
121
- this.hide()
122
- return
123
- }
124
- if (this.onScreenOverlay) {
+ if (this.mobileOpened || this.onScreenOverlay) {
125
this.hide()
126
}
127
src/components/modal/QModal.js
@@ -73,12 +73,13 @@ export default {
73
type: Boolean,
74
default: false
75
76
+ noRouteDismiss: Boolean,
77
minimized: Boolean,
78
maximized: Boolean
79
80
watch: {
81
- if (this.value === void 0) {
82
+ if (!this.noRouteDismiss) {
83
84
85
0 commit comments