RadioGroup
Demos
Sizes
Available size variant for the ui
prop: small
.
Normal size
Checked: -
Small size
Checked: -
<template>
<article>
<section>
<h4>Normal size</h4>
<veui-radio-group
v-model="flavor"
:items="flavors"
/>
<p>Checked: {{ readable }}</p>
</section>
<section>
<h4>Small size</h4>
<veui-radio-group
v-model="flavor"
ui="small"
:items="flavors"
/>
<p>Checked: {{ readable }}</p>
</section>
</article>
</template>
<script>
import { RadioGroup } from 'veui'
export default {
components: {
'veui-radio-group': RadioGroup
},
data () {
return {
flavor: null,
flavors: [
{ value: 'LATTE', label: 'Latte' },
{ value: 'MOCHA', label: 'Mocha' },
{ value: 'AMERICANO', label: 'Americano' }
]
}
},
computed: {
flavorLabelMap () {
return this.flavors.reduce((map, { value, label }) => {
map[value] = label
return map
}, {})
},
readable () {
return this.flavorLabelMap[this.flavor] || '-'
}
}
}
</script>
API
Props
Name | Type | Default | Description | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
ui | string | - | Style variants.
| ||||||||||||
items | Array<Object> | [] | The datasource of items with the item type being
| ||||||||||||
value | * | - |
The | ||||||||||||
disabled | boolean | false | Whether the radio group is disabled. | ||||||||||||
readonly | boolean | false | Whether the radio group is read-only. |
Slots
Name | Description | |||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
default | The label content of each radio. Displays the value of the
Additionally, custom properties apart from the listed ones will also be passes into the scope object via |
Events
Name | Description |
---|---|
change |
Triggers when the selected item changed. The callback parameter list is |