We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1010fb5 + 9217d37 commit 329ad3eCopy full SHA for 329ad3e
1 file changed
src/components/NcAppNavigation/NcAppNavigation.vue
@@ -229,13 +229,16 @@ export default {
229
},
230
231
watch: {
232
- isMobile() {
233
- this.open = !this.isMobile
+ isMobile(value) {
+ this.open = !value
234
this.toggleFocusTrap()
235
236
237
- open() {
+ open(value) {
238
239
+ emit('navigation-toggled', {
240
+ open: value,
241
+ })
242
243
244
0 commit comments