VueJS this in lodash throttled method VueJS this in lodash throttled method vue.js vue.js

VueJS this in lodash throttled method


You're using an arrow function, which binds the wrong context (this). You should use a plain function:

    doSomething: _.throttle( function () {        console.log('olas', this.foo);    },200)