SelectButton is used to choose single or multiple items from a list using buttons.
npx volt-vue add SelectButton
import SelectButton from '@/volt/SelectButton.vue';
SelectButton is used with the v-model property for two-way value binding along with the options collection. Label and value of an option are defined with the optionLabel and optionValue properties respectively. Note that, when options are simple primitive values such as a string array, no optionLabel and optionValue would be necessary.
<template>
<div class="card flex justify-center">
<SelectButton v-model="value" :options="options" />
</div>
</template>
<script setup lang="ts">
import SelectButton from '@/volt/SelectButton.vue';
import { ref } from 'vue';
const value = ref('One-Way');
const options = ref(['One-Way', 'Return']);
</script>
SelectButton allows selecting only one item by default and setting multiple option enables choosing more than one item. In multiple case, model property should be an array.
<template>
<div class="card flex justify-center">
<SelectButton v-model="value" :options="options" optionLabel="name" multiple aria-labelledby="multiple" />
</div>
</template>
<script setup lang="ts">
import SelectButton from '@/volt/SelectButton.vue';
import { ref } from 'vue';
const value = ref(null);
const options = ref([
{ name: 'Option 1', value: 1 },
{ name: 'Option 2', value: 2 },
{ name: 'Option 3', value: 3 }
]);
</script>
Label of an option is used as the display text of an item by default, for custom content support define an option template that gets the option instance as a parameter.
<template>
<div class="card flex justify-center">
<SelectButton v-model="value" :options="options" optionLabel="value" dataKey="value" aria-labelledby="custom">
<template #option="slotProps">
<i :class="slotProps.option.icon"></i>
</template>
</SelectButton>
</div>
</template>
<script setup lang="ts">
import SelectButton from '@/volt/SelectButton.vue';
import { ref } from 'vue';
const value = ref(null);
const options = ref([
{ icon: 'pi pi-align-left', value: 'Left' },
{ icon: 'pi pi-align-right', value: 'Right' },
{ icon: 'pi pi-align-center', value: 'Center' },
{ icon: 'pi pi-align-justify', value: 'Justify' }
]);
</script>
SelectButton provides small and large sizes as alternatives to the base.
<template>
<div class="card flex flex-col items-center gap-4">
<SelectButton v-model="value1" :options="options" size="small" />
<SelectButton v-model="value2" :options="options" />
<SelectButton v-model="value3" :options="options" size="large" />
</div>
</template>
<script setup lang="ts">
import SelectButton from '@/volt/SelectButton.vue';
import { ref } from 'vue';
const value1 = ref(null);
const value2 = ref('Beginner');
const value3 = ref('Expert');
const options = ref(['Beginner', 'Expert']);
</script>
Invalid state is displayed using the invalid prop to indicate a failed validation. You can use this style when integrating with form validation libraries.
<template>
<div class="card flex justify-center">
<SelectButton v-model="value" :options="options" aria-labelledby="basic" allowEmpty :invalid="value === null" />
</div>
</template>
<script setup lang="ts">
import SelectButton from '@/volt/SelectButton.vue';
import { ref } from 'vue';
const value = ref(null);
const options = ref(['One-Way', 'Return']);
</script>
When disabled is present, the element cannot be edited and focused entirely. Certain options can also be disabled using the optionDisabled property.
<template>
<div class="card flex justify-center flex-wrap gap-4">
<SelectButton v-model="value1" :options="options1" disabled />
<SelectButton v-model="value2" :options="options2" optionDisabled="constant" optionLabel="name" />
</div>
</template>
<script setup lang="ts">
import SelectButton from '@/volt/SelectButton.vue';
import { ref } from 'vue';
const value1 = ref('One Way');
const value2 = ref('One Way');
const options1 = ref(['Off', 'On']);
const options2 = ref([
{ name: 'Option 1', value: 1, constant: false },
{ name: 'Option 2', value: 2, constant: true }
]);
</script>