audiobookshelf/client/components/ui/TextInputWithLabel.vue

35 lines
600 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">{{ label }}</p>
<ui-text-input v-model="inputValue" :disabled="disabled" :type="type" class="w-full" />
2021-08-18 00:01:11 +02:00
</div>
</template>
<script>
export default {
props: {
value: [String, Number],
label: String,
type: {
type: String,
default: 'text'
},
2021-08-18 00:01:11 +02:00
disabled: Boolean
},
data() {
return {}
},
computed: {
inputValue: {
get() {
return this.value
},
set(val) {
this.$emit('input', val)
}
}
},
methods: {},
mounted() {}
}
</script>