Files
mixtape/zero.Backoffice.UI/app/editor/fields/password.vue
T
2021-12-09 10:51:10 +01:00

28 lines
592 B
Vue

<template>
<input :value="value" @input="$emit('input', $event.target.value)" type="password" class="ui-input" v-placeholder="{ placeholder, model: entity }" :maxlength="maxLength" :disabled="disabled" />
</template>
<script>
export default {
props: {
value: {
type: String,
default: null
},
maxLength: {
type: Number,
default: null
},
disabled: {
type: Boolean,
default: false
},
placeholder: {
type: String,
default: null
},
entity: Object
}
}
</script>