25 lines
No EOL
402 B
Vue
25 lines
No EOL
402 B
Vue
<script setup lang="ts">
|
|
const props = defineProps({
|
|
label: {
|
|
type: String,
|
|
},
|
|
radioButtons: {
|
|
type: Array,
|
|
required: true
|
|
}
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<v-radio-group :label="label">
|
|
<v-radio
|
|
v-for="radioButton in radioButtons"
|
|
:label="radioButton.label"
|
|
:value="radioButton.value"
|
|
></v-radio>
|
|
</v-radio-group>
|
|
</template>
|
|
|
|
<style scoped>
|
|
|
|
</style> |