[Vuejs]-Vue Computed property based on plugin value

3👍

You need to explicitly make the data reactive using Vue.observable:

Vue.prototype.$myPlugin = Vue.observable({
  data: 0,

  setValue(val) {
    this.data = val
  }
})

Leave a comment