mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
49 lines
1.2 KiB
Vue
49 lines
1.2 KiB
Vue
<template>
|
|
<BFormInput
|
|
:modelValue="modelValue"
|
|
@update:modelValue="$emit('update:modelValue', $event)"
|
|
:id="id"
|
|
:placeholder="placeholder"
|
|
:type="type"
|
|
:state="state"
|
|
:required="required"
|
|
:min="min"
|
|
:max="max"
|
|
:step="step"
|
|
:trim="trim"
|
|
:autocomplete="autocomplete_"
|
|
@blur="$parent.$emit('touch', name)"
|
|
/>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'InputItem',
|
|
|
|
props: {
|
|
modelValue: { type: [String, Number], default: null },
|
|
id: { type: String, default: null },
|
|
placeholder: { type: String, default: null },
|
|
type: { type: String, default: 'text' },
|
|
required: { type: Boolean, default: false },
|
|
state: { type: Boolean, default: null },
|
|
min: { type: Number, default: null },
|
|
max: { type: Number, default: null },
|
|
step: { type: Number, default: null },
|
|
trim: { type: Boolean, default: true },
|
|
autocomplete: { type: String, default: null },
|
|
pattern: { type: Object, default: null },
|
|
name: { type: String, default: null },
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
autocomplete_: this.autocomplete
|
|
? this.autocomplete
|
|
: this.type === 'password'
|
|
? 'new-password'
|
|
: null,
|
|
}
|
|
},
|
|
}
|
|
</script>
|