-
Notifications
You must be signed in to change notification settings - Fork 0
JMultiSelectTag
xinwu-yang edited this page Mar 1, 2023
·
1 revision
一个视线了下拉/checkbox多选功能的组件,可以结合数据字典使用,也可以直接使用。
<template>
<j-multi-select-tag placeholder="请做出你的选择" dictCode="sex" v-model="value"></j-multi-select-tag>
</template>
<script>
export default {
data() {
return {
value: '',
dictOptions: [
{ label: '选项一', value: 1 },
{ label: '选项二', value: 2 },
{ label: '选项三', value: 3 }
]
}
}
}
</script>
属性 | 说明 | 类型 | 必填 | 默认值 |
---|---|---|---|---|
value(v-model) | 值 | string | ||
placeholder | 默认文字 | string | ||
dictCode | 字典编码 | string | ||
type | 类型 | 'select' | 'checkbox' | 'select' | |
disabled | 是否禁用 | boolean | false | |
options | 选项(未设置dictCode时使用) | array |
事件名称 | 说明 | 回调参数 |
---|---|---|
change | 值变化时调用 | function(value) |