[Vuejs]-Error when using javascript component in typescript file Vue.js

0👍

There is a workaround to dismiss the error, for the example you can do this:

toast: any = this.$toast;
mounted() {
  this.toast = this.$toast;
}
yourMethod() {
  this.toast.error('Text ');
}

Leave a comment