多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
> ## 组件 wl-select-mutiple 使用文档 ``` <wl-select-mutiple v-model="valueList" :width="width" :dataList="dataList" :dataType="dataType"></wl-select-mutiple> ``` ### wl-select-mutiple props | 属性 | 说明 | 类型 | 默认值 | | --- | --- | --- | --- | | valueList | 双向绑定的多选下拉框值 | String 或 Array | '' | | width | 下拉框宽度 | String | 260px | | dataList | 下拉框所有数据 | String 或 Array | '' | | dataType | 下拉框数据类型 | String | 'Array' | | valueType | 下拉框数据类型 | String | 'String' | #### 备注说明 > valueList 当为数组时如下,为字符串时把下列数组转为字符串。 ``` ['twitter'] ``` > dataList 当为数组时如下,为字符串时把下列数组转为字符串。label 属性和 labelList 对应。 ``` [{ value: 'twitter', label: 'Twitter' }] ```