跳到主要内容

onlineCheckbox 下拉多选

参数定义

参数类型是否必选默认值说明
v-model[String,Array]绑定值
dict[String,Array]字典选项或者字典code
labelString标题配置
labelWidthString80px标题宽度
typeString-渲染类型 下拉搜索:sel_search 常规下拉:list
disabledBooleanfalse是否禁用

事件定义

事件名参数说明
changestring(多个以,号分割)绑定值变化时触发

代码示例

<template>
<online-checkbox label="会议类型:" labelWidth="100px" required v-model="type" dict="mettingType"/>
</template>


<script setup>
import { ref } from 'vue';
const type = ref('')
</script>


效果