Files
mixtape/zero.Web/App/editor/fields/textarea.vue
T
2020-04-30 15:35:09 +02:00

15 lines
268 B
Vue

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