所以我对Vue.js很陌生,我想修改自动完成组件(基本上是让它以我想要的特定方式提供建议),从而扩展了选择组件。我正在考虑制作自己的选择组件,使其使用与veautify select组件相同的样式,或者修改veautify自动完成组件以具有我想要的行为。有办法做到这两种方法吗?
答案 0 :(得分:0)
您也不需要这样做。您可以使用filter
属性来确定要用于返回结果的算法:
搜索时使用的过滤算法。 example
这使您可以控制搜索方式。
您还可以通过修改用于:items
属性的集合来控制提供回列表的内容:
get items() {
if (this.red && this.blue && this.shoe.hasOne() {
return myCoolCollection.filter((item) => item.red && item.blue && item.shoe.count() === this.shoe.hasOne()
}
return myCoolCollection
}