export default {
data() {
return {
keyword: null,
Books: []
};
},
watch: {
keyword(after, before) {
this.getResults();
}
},
methods: {
getResults() {
axios.get('/livesearch', { params: { keyword: this.keyword } })
.then(res => this.Books = res.data)
.catch(error => {});
}
}
}
No comments:
Post a Comment