Skip to content

Commit e7773ef

Browse files
committed
fix(docs): QDrawer initial model
1 parent 38e999c commit e7773ef

File tree

19 files changed

+26
-26
lines changed

19 files changed

+26
-26
lines changed

docs/src/examples/QDrawer/Basic.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
export default {
5454
data () {
5555
return {
56-
drawerLeft: this.$q.screen.width >= 700,
56+
drawerLeft: this.$q.screen.width > 700,
5757
drawerRight: true
5858
}
5959
}

docs/src/examples/QDrawer/HeaderPicture.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383
export default {
8484
data () {
8585
return {
86-
drawer: this.$q.screen.width >= 400
86+
drawer: this.$q.screen.width > 400
8787
}
8888
}
8989
}

docs/src/examples/QDrawer/Menu.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ const menuList = [
8787
export default {
8888
data () {
8989
return {
90-
drawer: this.$q.screen.width >= 500,
90+
drawer: this.$q.screen.width > 500,
9191
menuList
9292
}
9393
}

docs/src/examples/QDrawer/MenuSeamless.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
export default {
7474
data () {
7575
return {
76-
drawer: this.$q.screen.width >= 500
76+
drawer: this.$q.screen.width > 500
7777
}
7878
}
7979
}

docs/src/examples/QDrawer/MiniClickEvent.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
export default {
9696
data () {
9797
return {
98-
drawer: this.$q.screen.width >= 500,
98+
drawer: this.$q.screen.width > 500,
9999
miniState: false
100100
}
101101
},

docs/src/examples/QDrawer/MiniMouseEvents.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
export default {
8383
data () {
8484
return {
85-
drawer: this.$q.screen.width >= 500,
85+
drawer: this.$q.screen.width > 500,
8686
miniState: true
8787
}
8888
}

docs/src/examples/QDrawer/MiniSlot.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292
export default {
9393
data () {
9494
return {
95-
drawer: this.$q.screen.width >= 500,
95+
drawer: this.$q.screen.width > 500,
9696
miniState: true
9797
}
9898
},

docs/src/examples/QDrawer/MiniToOverlay.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383
export default {
8484
data () {
8585
return {
86-
drawer: this.$q.screen.width >= 500,
86+
drawer: this.$q.screen.width > 500,
8787
miniState: true
8888
}
8989
}

docs/src/examples/QPageSticky/Basic.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,8 @@
9797
export default {
9898
data () {
9999
return {
100-
drawerLeft: this.$q.screen.width >= 700,
101-
drawerRight: this.$q.screen.width >= 500
100+
drawerLeft: this.$q.screen.width > 700,
101+
drawerRight: this.$q.screen.width > 500
102102
}
103103
}
104104
}

docs/src/examples/QPageSticky/Expanded.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@
7171
export default {
7272
data () {
7373
return {
74-
drawerLeft: this.$q.screen.width >= 700,
75-
drawerRight: this.$q.screen.width >= 500
74+
drawerLeft: this.$q.screen.width > 700,
75+
drawerRight: this.$q.screen.width > 500
7676
}
7777
}
7878
}

0 commit comments

Comments
 (0)