This commit is contained in:
2019-07-24 15:15:52 +00:00
parent 565a092251
commit a14e64644d
22 changed files with 132 additions and 93 deletions

View File

@@ -141,7 +141,7 @@ export default {
},
beforeDestroy() {
//UNWIRE ALL EVENT HANDLERS FROM GZEVENTBUS
window.$gz.eventbus.$off();
window.$gz.eventBus.$off();
},
mounted() {
//redirect to login if not authenticated
@@ -174,7 +174,7 @@ export default {
this.$root.$emit("triggerScroll");
},
clickMenuItem(item) {
window.$gz.eventbus.$emit("menu-click", item);
window.$gz.eventBus.$emit("menu-click", item);
}
}
};