audiobookshelf/client/components/ui/TextareaWithLabel.vue
Mark Cooper a0c60a93ba Init
2021-08-17 17:01:11 -05:00

34 lines
533 B
Vue

<template>
<div class="w-full">
<p class="px-1">{{ label }}</p>
<ui-textarea-input v-model="inputValue" :rows="rows" class="w-full" />
</div>
</template>
<script>
export default {
props: {
value: [String, Number],
label: String,
rows: {
type: Number,
default: 2
}
},
data() {
return {}
},
computed: {
inputValue: {
get() {
return this.value
},
set(val) {
this.$emit('input', val)
}
}
},
methods: {},
mounted() {}
}
</script>