0👍
Try doing it like this:
mounted() {
var $that = this;
this.$events.on('emitEvent', function (eventData) {
$that.line = _.cloneDeep(eventData);
console.log('1', $that.line);
})
console.log('2', this.line);
}
0👍
this should work:
this.$events.on('emitEvent', (eventData) => {
this.line = _.cloneDeep(eventData)
console.log('1', this.line)
})
console.log('2', this.line)
}
- [Vuejs]-How to use script in vue
- [Vuejs]-Call a plugin function inside a page function doesn't works
Source:stackexchange.com