前端模糊搜索

searchList () {
// 搜索结果
return this.cities.filter(item => {
return item.name.indexOf(this.value) > -1 || item.pinyin.indexOf(this.value) > -1
})
}

你可能感兴趣的:(前端模糊搜索)