Create a Vue.JS 2 Autocomplete Component - Part 1

preview_player
Показать описание
In this video I'll show you my way of making an autocomplete component using Vue.JS 2.
I got many requests to create a Vue.JS component tutorial and show you my approach on this one.
If you have any questions leave them down in the comments section down below.
Enjoy :)

Don't forget to subscribe :)
Рекомендации по теме
Комментарии
Автор

awesome tutorial.Well explained!. Thanks

moleyabat
Автор

trying to replace customer js with
" export default[
{ id: 0, name: 'some one', title: 'zero' },
{ id: 1, name: 'test last', title:'one'},
{ id: 2, name: 'test first', title:'two'},
{ id: 3, name: 'test second', title:'three'},
{ id: 4, name: 'test third', title:'four'},
{ id: 5, name: 'test fourth', title:'five'},
{ id: 6, name: 'test fifth', title:'six'}
];"
to
"import axios from 'axios';
export default {
data () {
return {
info: []
}
},
mounted () {
axios
.then(response => (this.info = response))
}
}"
for getting data from url into customer.js
not working in case.

devendrapawar
welcome to shbcf.ru