You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ES6 (import VueSimpleSuggest from 'vue-simple-suggest')
What is the motivation / use case for changing the behavior?
this is only a vue warning but might cause some problems, vue.common.dev.js:1893 TypeError: Cannot read property 'indexOf' ... in displayProperty function, on line 300 at vue-simiple-suggest.vue. im not sure the implications but the fix maybe is changing ~process.env.NODE_ENV to process.env.NODE_ENV or the change the whole condition to if(typeof process.env.NODE_ENV != 'undefined' && process.env.NODE_ENV.indexOf('dev')).
Please tell us about your environment:
Vue.js Version: 2.6.11
Vue-simple-suggest version: 1.10.0
The text was updated successfully, but these errors were encountered:
Error in callback for immediate watcher "value": "ReferenceError: process is not defined"
error occur if :value is not define inside <vue-simple-suggest :input="xxx">.
I updated "vue-simple-suggest" to version 1.10.3 and got the same error. I tried adding ":value" but it didn't help. Are there any other ideas how to fix this?
I'm having the same issue. Oddly only on one of the vue-simple-suggest instances, yet it has identical configurations as the others: <vue-simple-suggest :list="streetlist" v-model="newRow.street" @blur="add(newRow)" :filter-by-query="true" />
If I comment (only this one) out, the error disappears.
I'm submitting a ...
How are you importing Vue-simple-suggest?
import VueSimpleSuggest from 'vue-simple-suggest'
)What is the motivation / use case for changing the behavior?
vue.common.dev.js:1893 TypeError: Cannot read property 'indexOf' ...
indisplayProperty
function, on line 300 atvue-simiple-suggest.vue
. im not sure the implications but the fix maybe is changing~process.env.NODE_ENV
toprocess.env.NODE_ENV
or the change the whole condition toif(typeof process.env.NODE_ENV != 'undefined' && process.env.NODE_ENV.indexOf('dev'))
.Please tell us about your environment:
The text was updated successfully, but these errors were encountered: