primevue-mirror/apps/showcase/doc/selectbutton/BasicDoc.vue

61 lines
1.6 KiB
Vue
Raw Normal View History

2023-02-28 08:29:30 +00:00
<template>
<DocSectionText v-bind="$attrs">
<p>
SelectButton is used as a controlled component with <i>modelValue</i> property along with an <i>options</i> collection. Label and value of an option are defined with the <i>optionLabel</i> and <i>optionValue</i> properties respectively.
Note that, when options are simple primitive values such as a string array, no <i>optionLabel</i> and <i>optionValue</i> would be necessary.
2023-02-28 08:29:30 +00:00
</p>
</DocSectionText>
2024-05-20 12:14:38 +00:00
<div class="card flex justify-center">
2023-02-28 08:29:30 +00:00
<SelectButton v-model="value" :options="options" aria-labelledby="basic" />
</div>
<DocSectionCode :code="code" />
</template>
<script>
export default {
data() {
return {
2024-01-24 07:15:33 +00:00
value: 'One-Way',
options: ['One-Way', 'Return'],
2023-02-28 08:29:30 +00:00
code: {
2023-09-22 12:54:14 +00:00
basic: `
2023-10-15 09:38:39 +00:00
<SelectButton v-model="value" :options="options" aria-labelledby="basic" />
`,
2023-09-22 12:54:14 +00:00
options: `
<template>
2024-05-20 12:14:38 +00:00
<div class="card flex justify-center">
2023-02-28 08:29:30 +00:00
<SelectButton v-model="value" :options="options" aria-labelledby="basic" />
</div>
</template>
<script>
export default {
data() {
return {
2024-01-24 07:15:33 +00:00
value: 'One-Way',
options: ['One-Way', 'Return']
2023-02-28 08:29:30 +00:00
}
}
};
2023-10-15 09:38:39 +00:00
<\/script>
`,
2023-09-22 12:54:14 +00:00
composition: `
<template>
2024-05-20 12:14:38 +00:00
<div class="card flex justify-center">
2023-02-28 08:29:30 +00:00
<SelectButton v-model="value" :options="options" aria-labelledby="basic" />
</div>
</template>
<script setup>
import { ref } from 'vue';
2024-01-24 07:15:33 +00:00
const value = ref('One-Way');
const options = ref(['One-Way', 'Return']);
2023-10-15 09:38:39 +00:00
<\/script>
`
2023-02-28 08:29:30 +00:00
}
};
}
};
</script>