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
What is the motivation / use case for changing the behavior?
To get this to work with VueJS 3.
Please tell us about your environment:
Vue.js Version: 3.0.0-0
Vue-simple-suggest version: 1.10.2
Browser: Firefox 82.0a1
Language: ES6/7
The text was updated successfully, but these errors were encountered:
jonesnc
changed the title
Uncaught TypeError: can't access property "options", this.constructor is undefined when using Vue 3
"Uncaught TypeError: can't access property "options", this.constructor is undefined" when using Vue 3
Sep 18, 2020
jonesnc
changed the title
"Uncaught TypeError: can't access property "options", this.constructor is undefined" when using Vue 3
Error: "Uncaught TypeError: can't access property "options", this.constructor is undefined" when using Vue 3
Sep 18, 2020
I'm submitting a ...
What is the current behavior?
When I try to use this component, I get this error:
If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo of the problem
Since VueJS 3 was officially release today, I decided to try it out with this component.
Using
vue-cli
to create the structure of the project with these package versions:Here's my component code, taken from the docs
HelloWorld.vue
What is the expected behavior?
To initialize without any errors.
How are you importing Vue-simple-suggest?
I have tried all of these import techniques, all with the same result
import VueSimpleSuggest from 'vue-simple-suggest/lib'
)import VueSimpleSuggest from 'vue-simple-suggest'
)import VueSimpleSuggest from 'vue-simple-suggest/dist/es7'
)import VueSimpleSuggest from 'vue-simple-suggest'
)const VueSimpleSuggest = require('vue-simple-suggest')
)<script type="text/javascript" src="https://unpkg.com/vue-simple-suggest"></script>
)What is the motivation / use case for changing the behavior?
To get this to work with VueJS 3.
Please tell us about your environment:
The text was updated successfully, but these errors were encountered: