Files
mixtape/zero.Backoffice.UI/app/editor/fields/textarea.vue
T

13 lines
272 B
Vue
Raw Normal View History

2021-12-21 14:41:50 +01:00
<template>
<textarea class="ui-textarea" :value="value" @input="$emit('input', $event.target.value)" rows="3" :disabled="config.disabled"></textarea>
</template>
<script>
export default {
props: {
value: String,
config: Object
},
}
</script>