it show this error when you update all data related to vue suggest and the error was with this line:
if (this.text.length < this.minLength) { dist/es6.js:546
i fixed with this: if (this.text && this.text.length < this.minLength) {
|
if (this.text.length < this.minLength) { |
it show this error when you update all data related to vue suggest and the error was with this line:
if (this.text.length < this.minLength) {dist/es6.js:546i fixed with this:
if (this.text && this.text.length < this.minLength) {vue-simple-suggest/dist/es6.js
Line 546 in e028341