v1.0.0.0727

1. 新增单选模式, {radio: true|false}
2. 新增重复选模式, {repeat: true|false}
3. 新增配置, 可以控制是否自动关闭下拉框, {clickClose: true|false}
4. 新增on方法, 可以监听已选择数据, data: {arr, item, selected}
This commit is contained in:
maplemei
2019-07-27 16:26:05 +08:00
parent ba563c67c4
commit d54aa08565
22 changed files with 1706 additions and 354 deletions

View File

@@ -38,7 +38,7 @@ class xmOptions {
*/
update(options = {}, isNew){
//记录最新的配置项
this.options = {...this.options, ...options};
this.options = Object.assign(this.options, options);
//如果dom不存在, 则不进行渲染事项
let dom = selector(this.options.el);