Signed-off-by: Jonas Rittershofer <jotoeri@users.noreply.github.com>
This commit is contained in:
Jonas Rittershofer 2020-11-24 21:43:35 +01:00
Родитель 1e400fbc95
Коммит d845ef3584
1 изменённых файлов: 11 добавлений и 0 удалений

Просмотреть файл

@ -42,6 +42,7 @@
:placeholder="datetimePickerPlaceholder"
:show-second="false"
:type="datetimePickerType"
:input-attr="inputAttr"
@change="onValueChange" />
</div>
</Question>
@ -95,6 +96,16 @@ export default {
}
return 'LL'
},
/**
* All non-exposed props onto datepicker input-element.
* @returns {Object}
*/
inputAttr() {
return {
required: this.mandatory,
}
},
},
methods: {