summaryrefslogtreecommitdiff
path: root/src/components/Global/LoadingBar.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Global/LoadingBar.vue')
-rw-r--r--src/components/Global/LoadingBar.vue6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/Global/LoadingBar.vue b/src/components/Global/LoadingBar.vue
index d62ef1e2..1034de64 100644
--- a/src/components/Global/LoadingBar.vue
+++ b/src/components/Global/LoadingBar.vue
@@ -22,13 +22,13 @@ export default {
};
},
created() {
- this.$root.$on('loader::start', () => {
+ this.$root.$on('loader-start', () => {
this.startLoadingInterval();
});
- this.$root.$on('loader::end', () => {
+ this.$root.$on('loader-end', () => {
this.endLoadingInterval();
});
- this.$root.$on('loader::hide', () => {
+ this.$root.$on('loader-hide', () => {
this.hideLoadingBar();
});
},