Files
mixtape/zero.Web.UI/App/editor/fields/textarea.vue
T
2020-09-17 11:26:23 +02:00

19 lines
362 B
Vue

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