i have methods like this
methods: {
workerJob(){
var count = 0;
for (var i = 0; i < 5; i++) {
count ++;
}
}
}
How can i call workerJob() using vue-worker ? below code is giving error Uncaught ReferenceError: _this is not defined
this.$worker.run(this.workerJob());
i have methods like this
How can i call workerJob() using vue-worker ? below code is giving error
Uncaught ReferenceError: _this is not definedthis.$worker.run(this.workerJob());