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