vue-select-multi
v1.0.1
Published
vue2.0 弹层选择
Downloads
6
Readme
vue-select
vue2.0 弹层选择
:d-list // 传入的数据 :max // 传入可选择的最大值 :checkbox-left // 传入选择框是否居左 :tips // 传入标题
<vue-select ref="vueSelect" :d-list="dList" :max="dList.length-1" :tips="'xxx'" :checkbox-left="false" @on-confirm="getInfo"></vue-select>
methods: {
openChecklist () {
this.$refs.vueSelect.show();
},
getInfo (val) {
this.addressInfo = val;
console.log('点击确定后',this.addressInfo);
}
}