- 修复本地搜索模式下多次重复触发过滤方法, 优化搜索性能
- 修复选项过多时, 可以使用鼠标进行横向滚动
This commit is contained in:
maplemei
2019-10-10 14:30:04 +08:00
parent 32611d9257
commit 32d393f838
12 changed files with 81 additions and 20 deletions

21
docs/mds/ZTEST.md Normal file
View File

@@ -0,0 +1,21 @@
## 测试
:::demo
```html
<div id="demo1" class="xm-select-demo"></div>
<script>
var demo1 = xmSelect.render({
el: '#demo1',
filterable: true,
data: [
{name: '张三', value: 1},
{name: '李四', value: 2},
{name: '王五', value: 3},
],
})
</script>
```
:::