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

22 lines
494 B
Vue
Raw Normal View History

2021-12-21 13:58:48 +01:00
<template>
2021-12-21 14:41:50 +01:00
<input :value="value" @input="$emit('input', $event.target.value)" type="text" class="ui-input" v-placeholder="{ placeholder, model: config.model }" :maxlength="maxLength" :disabled="config.disabled" />
2021-12-21 13:58:48 +01:00
</template>
<script>
export default {
props: {
value: String,
2021-12-21 14:41:50 +01:00
config: Object,
2021-12-21 13:58:48 +01:00
maxLength: {
type: Number,
default: null
},
placeholder: {
type: [String, Function],
default: null
}
}
}
</script>