mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-29 19:53:11 +01:00
40 lines
1.1 KiB
Vue
40 lines
1.1 KiB
Vue
<script setup>
|
|
const props = defineProps({
|
|
modelValue: [String, Number, Boolean],
|
|
label: {
|
|
type: String,
|
|
default: ''
|
|
},
|
|
fieldName: {
|
|
type: String,
|
|
default: '',
|
|
required: true
|
|
},
|
|
fieldError: [String],
|
|
options: {
|
|
type: Array,
|
|
required: true
|
|
},
|
|
help: {
|
|
type: String,
|
|
default: ''
|
|
},
|
|
})
|
|
|
|
const selected = ref(props.modelValue)
|
|
</script>
|
|
|
|
<template>
|
|
<div class="field">
|
|
<label class="label" v-html="$t(label)"></label>
|
|
<div class="control">
|
|
<div class="select">
|
|
<select v-model="selected" v-on:change="$emit('update:modelValue', $event.target.value)">
|
|
<option v-for="option in options" :value="option.value">{{ $t(option.text) }}</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
<FieldError v-if="fieldError != undefined" :error="fieldError" :field="fieldName" />
|
|
<p class="help" v-html="$t(help)" v-if="help"></p>
|
|
</div>
|
|
</template> |