1👍
You can import and register VueAutocompletion locally in your Vue component.
import VueAutocompletion from 'vue-autocompletion'
export default {
components: {
VueAutocompletion
},
data () {
...
0👍
In your codes, the registered component name vue-autocompletion
and used name in template vue-auto-completion
are different from each other.
They should be the same.
<vue-auto-completion
...
components: {
'vue-auto-completion':VueAutocompletion
},
Source:stackexchange.com