Files
mixtape/zero.Web.UI/editor/fields/textarea.vue
T
2020-10-14 15:47:57 +02:00

21 lines
385 B
Vue

<template>
<textarea class="ui-textarea" :value="value" @input="$emit('input', $event.target.value)" rows="3" :disabled="disabled"></textarea>
</template>
<script>
export default {
emits: ['input'],
props: {
value: {
type: String
},
disabled: {
type: Boolean,
default: false
},
config: Object
},
}
</script>