-1👍
Try using nextTick:
`mounted() {
this.$nextTick(function () {
this.$bus.$on('get-level-items', (obj) => {
if (obj.level === 'third' && obj.parent === this.parent) {
if (this.itemsNotFilled) {
this.getAllCategories(this.parent)
}
}
})
})
}`
Source:stackexchange.com