<legno-radio-button name="fruits" :items="fruit" />
fruit = [
{ id: 'id1', value: 1, text: 'Apple' },
{ id: 'id2', value: 2, text: 'Orange' },
{ id: 'id3', value: 3, text: 'Banana' }
]
<div class="legno-radio-button">
<label class="legno-radio-button--group-title">Please select fruit</label>
<div class="legno-radio-button__item">
<input id="id1" name="fruits" type="radio" value="1">
<label for="id1">Apple</label>
</div>
<div class="legno-radio-button__item">
<input id="id2" name="fruits" type="radio" value="2">
<label for="id2">Orange</label>
</div>
<div class="legno-radio-button__item">
<input id="id3" name="fruits" type="radio" value="3">
<label for="id3">Banana</label>
</div>
</div>