Files
mixtape/zero.Web.UI/App/editor/fields/textarea.vue
T

19 lines
362 B
Vue
Raw Normal View History

2020-04-30 15:35:09 +02:00
<template>
2020-09-17 11:26:23 +02:00
<textarea class="ui-textarea" :value="value" @input="$emit('input', $event.target.value)" rows="3" :disabled="disabled"></textarea>
2020-04-30 15:35:09 +02:00
</template>
<script>
export default {
props: {
value: {
type: String
},
2020-09-17 11:26:23 +02:00
disabled: {
type: Boolean,
default: false
},
2020-04-30 15:35:09 +02:00
config: Object
},
}
</script>