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 ');
}
- [Vuejs]-Creating a mini store with property getters used Vue.observable
- [Vuejs]-Error in Laravel vue inertia creating search with pagination
Source:stackexchange.com