Skip to content

Commit

Permalink
fix(examples): hide drawers on mobile in layout examples
Browse files Browse the repository at this point in the history
  • Loading branch information
KaelWD committed Oct 25, 2018
1 parent 88c2690 commit c2c0a99
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions src/examples/layouts/complex.vue
Original file line number Diff line number Diff line change
Expand Up @@ -94,10 +94,10 @@
<script>
export default {
data: () => ({
drawer: true,
drawerRight: true,
right: null,
left: null
drawer: null,
drawerRight: null,
right: false,
left: false
}),
props: {
source: String
Expand Down
2 changes: 1 addition & 1 deletion src/examples/layouts/dark.vue
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
<script>
export default {
data: () => ({
drawer: true
drawer: null
}),
props: {
source: String
Expand Down
2 changes: 1 addition & 1 deletion src/examples/layouts/googleYoutube.vue
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
<script>
export default {
data: () => ({
drawer: true,
drawer: null,
items: [
{ icon: 'trending_up', text: 'Most Popular' },
{ icon: 'subscriptions', text: 'Subscriptions' },
Expand Down

0 comments on commit c2c0a99

Please sign in to comment.