66 lines
2.5 KiB
Vue
66 lines
2.5 KiB
Vue
<template>
|
|
<DocSectionText v-bind="$attrs">
|
|
<p>RadioButton is used with the <i>v-model</i> property for two-way value binding.</p>
|
|
</DocSectionText>
|
|
<div class="card flex justify-center">
|
|
<div class="flex flex-wrap gap-4">
|
|
<div class="flex items-center gap-2">
|
|
<RadioButton v-model="ingredient" inputId="ingredient1" name="pizza" value="Cheese" />
|
|
<label for="ingredient1">Cheese</label>
|
|
</div>
|
|
<div class="flex items-center gap-2">
|
|
<RadioButton v-model="ingredient" inputId="ingredient2" name="pizza" value="Mushroom" />
|
|
<label for="ingredient2">Mushroom</label>
|
|
</div>
|
|
<div class="flex items-center gap-2">
|
|
<RadioButton v-model="ingredient" inputId="ingredient3" name="pizza" value="Pepper" />
|
|
<label for="ingredient3">Pepper</label>
|
|
</div>
|
|
<div class="flex items-center gap-2">
|
|
<RadioButton v-model="ingredient" inputId="ingredient4" name="pizza" value="Onion" />
|
|
<label for="ingredient4">Onion</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<DocSectionCode :code="code" />
|
|
</template>
|
|
|
|
<script setup>
|
|
import RadioButton from '@/plex/radiobutton';
|
|
import { ref } from 'vue';
|
|
|
|
const ingredient = ref(null);
|
|
|
|
const code = ref(`
|
|
<template>
|
|
<div class="card flex justify-center">
|
|
<div class="flex flex-wrap gap-4">
|
|
<div class="flex items-center gap-2">
|
|
<RadioButton v-model="ingredient" inputId="ingredient1" name="pizza" value="Cheese" />
|
|
<label for="ingredient1">Cheese</label>
|
|
</div>
|
|
<div class="flex items-center gap-2">
|
|
<RadioButton v-model="ingredient" inputId="ingredient2" name="pizza" value="Mushroom" />
|
|
<label for="ingredient2">Mushroom</label>
|
|
</div>
|
|
<div class="flex items-center gap-2">
|
|
<RadioButton v-model="ingredient" inputId="ingredient3" name="pizza" value="Pepper" />
|
|
<label for="ingredient3">Pepper</label>
|
|
</div>
|
|
<div class="flex items-center gap-2">
|
|
<RadioButton v-model="ingredient" inputId="ingredient4" name="pizza" value="Onion" />
|
|
<label for="ingredient4">Onion</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import RadioButton from '@/plex/radiobutton';
|
|
import { ref } from 'vue';
|
|
|
|
const ingredient = ref(null);
|
|
<\/script>
|
|
`);
|
|
</script>
|