Files
mixtape/zero.Web.UI/App/editor/fields/text.vue
T
2020-08-18 15:12:35 +02:00

25 lines
492 B
Vue

<template>
<div class="ui-box">
<input :value="value" @input="$emit('input', $event.target.value)" type="text" class="ui-input" v-localize:placeholder="" :maxlength="maxLength" />
</div>
</template>
<script>
export default {
props: {
value: {
type: String,
default: null
},
config: Object
},
computed: {
maxLength()
{
return this.config.maxLength > 0 ? this.config.maxLength : null;
}
}
}
</script>