- 修复本地搜索模式下多次重复触发过滤方法, 优化搜索性能
- 修复选项过多时, 可以使用鼠标进行横向滚动
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>
```
:::

View File

@@ -75,6 +75,7 @@ export default [{
{ path: '/example-custom/ZM01', name: '赋值与取值', component: importMd('/ZM01') },
{ path: '/example-custom/ZM02', name: '表单提交', component: importMd('/ZM02') },
// { path: '/example-custom/ZM03', name: '表格中多选', component: importMd('/ZM03') },
// { path: '/example-custom/ZTEST', name: '测试', component: importMd('/ZTEST') },
]
}, {
path: '/question',