audiobookshelf/client/components/ui/TextInputWithLabel.vue

48 lines
982 B
Vue
Raw Normal View History

2021-08-18 00:01:11 +02:00
<template>
<div class="w-full">
<p class="px-1 text-sm font-semibold" :class="disabled ? 'text-gray-400' : ''">
2021-09-14 03:18:58 +02:00
{{ label }}<em v-if="note" class="font-normal text-xs pl-2">{{ note }}</em>
</p>
<ui-text-input ref="input" v-model="inputValue" :disabled="disabled" :readonly="readonly" :type="type" class="w-full" @blur="inputBlurred" />
2021-08-18 00:01:11 +02:00
</div>
</template>
<script>
export default {
props: {
value: [String, Number],
label: String,
2021-09-14 03:18:58 +02:00
note: String,
type: {
type: String,
default: 'text'
},
readonly: Boolean,
2021-08-18 00:01:11 +02:00
disabled: Boolean
},
data() {
return {}
},
computed: {
inputValue: {
get() {
return this.value
},
set(val) {
this.$emit('input', val)
}
}
},
2022-02-17 21:33:12 +01:00
methods: {
blur() {
if (this.$refs.input && this.$refs.input.blur) {
this.$refs.input.blur()
}
},
inputBlurred() {
this.$emit('blur')
2022-02-17 21:33:12 +01:00
}
},
2021-08-18 00:01:11 +02:00
mounted() {}
}
</script>