Answer the question
In order to leave comments, you need to log in
How to make a search component on Vue?
At the moment I have a search method in the component
В templatesList у меня хранится список пользователей
data() {
return {
templatesList: this.$store.getters.templatesList,
};
},
//метод поиска
search(searchValue) {
if (searchValue.length > 0) {
this.templatesList = this.templatesList.filter(item => item.name.indexOf(this.searchValue) !== -1);
} else {
this.templatesList = this.$store.getters.templatesList;
}
return this.templatesList;
},
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question