RadioButtonGroup 单选按钮组
示例
尺寸
可选的 ui
属性值:alt
/large
/small
/tiny
/micro
/square
。
Normal size
Selected: -
Small size & Square shape
<template>
<article>
<section>
<h4>Normal size</h4>
<veui-radio-button-group
v-model="flavor"
:items="flavors"
/>
<p>Selected: {{ readable }}</p>
</section>
<section>
<h4>Small size &amp; Square shape</h4>
<veui-radio-button-group
ui="small square"
:items="actions"
>
<veui-icon
slot-scope="{ value, label }"
:name="value"
:label="label"
/>
</veui-radio-button-group>
</section>
</article>
</template>
<script>
import { RadioButtonGroup, Icon } from 'veui'
import 'veui-theme-one/icons/pause'
import 'veui-theme-one/icons/play'
export default {
components: {
'veui-radio-button-group': RadioButtonGroup,
'veui-icon': Icon
},
data () {
return {
flavor: null,
flavors: [
{ value: 'LATTE', label: 'Latte' },
{ value: 'MOCHA', label: 'Mocha' },
{ value: 'AMERICANO', label: 'Americano' }
],
actions: [
{
label: '暂停',
value: 'pause'
},
{
label: '播放',
value: 'play'
}
]
}
},
computed: {
flavorLabelMap () {
return this.flavors.reduce((map, { value, label }) => {
map[value] = label
return map
}, {})
},
readable () {
return this.flavorLabelMap[this.flavor] || '-'
}
}
}
</script>
API
属性
名称 | 类型 | 默认值 | 描述 | ||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
ui | string | - | 预设样式。
| ||||||||||||||
items | Array<Object> | [] | 单选按钮组数据源,项目类型为
| ||||||||||||||
value | * | - |
| ||||||||||||||
disabled | boolean | false | 是否为禁用状态。 | ||||||||||||||
readonly | boolean | false | 是否为只读状态。 |
插槽
名称 | 描述 | |||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
default | 按钮内文本区域。 默认内容:
另外, |
事件
名称 | 描述 |
---|---|
change |
选中状态变化后触发,回调参数为 |