💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、豆包、星火、月之暗面及文生图、文生视频 广告
> ## 组件 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' }] ```