rename sidenav show method to open #238

This commit is contained in:
Marcos Moura 2016-12-23 12:28:43 -02:00
parent b737bd834b
commit 436935b8d3

View file

@ -27,6 +27,9 @@
},
methods: {
show() {
this.open();
},
open() {
this.mdVisible = true;
this.$el.focus();
this.$emit('open');
@ -40,7 +43,7 @@
if (this.mdVisible) {
this.close();
} else {
this.show();
this.open();
}
}
}