[Vuejs]-How to call a vue method from bootstrap-select listener?

1👍

Use arrow function which solve this problem.

let callback = () => {
  this.callVueComponentMethod();
}

To learn more about this you can read this.

Leave a comment