Added ability to use a method from another component in a page, to update the notif counter on Navbar component when on notif page

mounted() {
// to allow fetchNotifsCount() to be called from another page/component
this.$root.$on('fetchNotifsCount', () => {
this.fetchNotifsCount()
})
},

In the target page, use `this.$root.$emit('fetchNotifsCount')`


Ref:
https://stackoverflow.com/questions/53728386/vue-call-method-of-another-component