primevue-mirror/apps/volt/doc/radiobutton/SizesDoc.vue

58 lines
2.1 KiB
Vue
Raw Normal View History

2025-03-01 22:12:11 +00:00
<template>
<DocSectionText v-bind="$attrs">
<p>RadioButton provides <i>small</i> and <i>large</i> sizes as alternatives to the base.</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="size" inputId="size_small" name="size" value="Small" size="small" />
<label for="size_small" class="text-sm">Small</label>
</div>
<div class="flex items-center gap-2">
<RadioButton v-model="size" inputId="size_normal" name="size" value="Normal" />
<label for="size_normal">Normal</label>
</div>
<div class="flex items-center gap-2">
<RadioButton v-model="size" inputId="size_large" name="size" value="Large" size="large" />
<label for="size_large" class="text-lg">Large</label>
</div>
</div>
</div>
<DocSectionCode :code="code" />
</template>
<script setup>
2025-03-03 12:50:58 +00:00
import RadioButton from '@/volt/radiobutton';
2025-03-01 22:12:11 +00:00
import { ref } from 'vue';
const size = 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="size" inputId="size_small" name="size" value="Small" size="small" />
<label for="size_small" class="text-sm">Small</label>
</div>
<div class="flex items-center gap-2">
<RadioButton v-model="size" inputId="size_normal" name="size" value="Normal" />
<label for="size_normal">Normal</label>
</div>
<div class="flex items-center gap-2">
<RadioButton v-model="size" inputId="size_large" name="size" value="Large" size="large" />
<label for="size_large" class="text-lg">Large</label>
</div>
</div>
</div>
</template>
<script setup>
2025-03-03 12:50:58 +00:00
import RadioButton from '@/volt/radiobutton';
2025-03-01 22:12:11 +00:00
import { ref } from 'vue';
const size = ref(null);
<\/script>
`);
</script>