diff --git a/src/components/select-input/SelectInput.vue b/src/components/select-input/SelectInput.vue index d96fa41..98c9570 100644 --- a/src/components/select-input/SelectInput.vue +++ b/src/components/select-input/SelectInput.vue @@ -18,7 +18,7 @@ export default defineComponent({ ); const options = props?.control?.options?.map(({ key, value, disabled }) => - h('option', { key, value, disabled }, value), + h('option', { key, value: key, disabled }, value), ); return h( 'select',