## 创建条目 ### 搜索不存在则创建条目 ``` //想创建就必须要开启本地搜索 xmSelect.render({ //... filterable: true, create: function(val){ //返回一个创建成功的对象, val是搜索的数据 return { name: '创建-' + val, value: val } } }) ``` :::demo ```html
``` ::: ### 单选创建 :::demo ```html
``` :::