留其。。。
需要注意的地⽅
1. 为了在匹配不到数据时也保留其输⼊的值,可以⽤ filter-method ⾃定义筛选
2. el-select添加上filterable之后,点击展开,点击收起,会导致focus和blur事件不触发,但点击页⾯其他地⽅才可正常触发 ,可利⽤visible-change 事件来解决些问题3. input获取焦点时保留其value值⽤focus事件做相关赋值处理具体实现代码如下
1 2 3 4 v-for=\"item in options\" 5 :key=\"item.value\" 6 :label=\"item.label\" 7 :value=\"item.value\"> 8 9 10 11
2 3 4 v-for=\"item in options\" 5 :key=\"item.value\" 6 :label=\"item.label\" 7 :value=\"item.value\"> 8 9 10
12
因篇幅问题不能全部显示,请点此查看更多更全内容