mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2024-12-24 19:11:44 +01:00
34 lines
533 B
Vue
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>
|