Merge pull request #321 from baiyaaaaa/master

fix menu auto collapse after router change
This commit is contained in:
SkyAo 2016-10-11 15:16:32 +08:00 committed by GitHub
commit f74343d3cd

View File

@ -27,12 +27,7 @@
type: String,
default: ''
},
defaultOpeneds: {
type: Array,
default() {
return [];
}
},
defaultOpeneds: Array,
theme: {
type: String,
default: 'light'
@ -43,7 +38,7 @@
data() {
return {
activeIndex: this.defaultActive,
openedMenus: this.defaultOpeneds.slice(0),
openedMenus: (this.defaultOpeneds || []).slice(0),
menuItems: {},
submenus: {}
};
@ -55,14 +50,18 @@
this.handleSelect(value, indexPath);
},
defaultOpeneds(value) {
this.openedMenus = value;
defaultOpeneds: {
deep: true,
handler(value) {
this.openedMenus = value;
}
}
},
methods: {
openMenu(index, indexPath) {
let openedMenus = this.openedMenus;
if (openedMenus.indexOf(index) !== -1) return;
//
if (this.uniqueOpened) {
this.openedMenus = openedMenus.filter(index => {
return indexPath.indexOf(index) !== -1;
@ -92,29 +91,28 @@
this.broadcast('submenu', 'item-select', [index, indexPath]);
this.openedMenus = [];
} else {
this.openActiveItemMenus();
}
if (this.router && route) {
this.$router.push(route);
}
},
openActiveItemMenus() {
let index = this.activeIndex;
if (index && this.mode === 'vertical') {
let indexPath = this.menuItems[index].indexPath;
//
indexPath.forEach(index => {
let submenu = this.submenus[index];
submenu && this.openMenu(index, submenu.indexPath);
});
}
if (this.router && route) {
this.$router.push(route);
}
}
},
mounted() {
let index = this.activeIndex;
if (index && this.mode === 'vertical') {
let indexPath = this.menuItems[index].indexPath;
//
indexPath.forEach(index => {
let submenu = this.submenus[index];
submenu && this.openMenu(index, submenu.indexPath);
});
}
this.openActiveItemMenus();
}
};
</script>