51 lines
931 B
Vue
51 lines
931 B
Vue
|
<template>
|
||
|
<article>
|
||
|
<section>
|
||
|
<veui-radio-button-group
|
||
|
v-model="flavor"
|
||
|
:items="flavors"
|
||
|
/>
|
||
|
</section>
|
||
|
<section>
|
||
|
<veui-radio-button-group
|
||
|
v-model="flavor"
|
||
|
:items="flavors"
|
||
|
>
|
||
|
<template #desc="{ desc, label }">
|
||
|
{{ desc || `a description for ${label}` }}
|
||
|
</template>
|
||
|
</veui-radio-button-group>
|
||
|
</section>
|
||
|
</article>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import { RadioButtonGroup } from 'veui'
|
||
|
|
||
|
export default {
|
||
|
components: {
|
||
|
'veui-radio-button-group': RadioButtonGroup
|
||
|
},
|
||
|
data () {
|
||
|
return {
|
||
|
flavor: null,
|
||
|
flavors: [
|
||
|
{ value: 'LATTE', label: 'Latte', desc: 'a description for latte.' },
|
||
|
{ value: 'MOCHA', label: 'Mocha', desc: 'a description for mocha.' },
|
||
|
{ value: 'AMERICANO', label: 'Americano' }
|
||
|
]
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style lang="less" scoped>
|
||
|
section {
|
||
|
margin-bottom: 20px;
|
||
|
}
|
||
|
|
||
|
h4 {
|
||
|
margin-top: 0;
|
||
|
}
|
||
|
</style>
|