mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim.git
synced 2026-08-25 23:43:56 +00:00
24 lines
592 B
Vue
24 lines
592 B
Vue
<template>
|
|
<input type="text" class="form-control" :value="value">
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
mounted: function() {
|
|
let vm = this;
|
|
$(this.$el).datepicker({
|
|
autoclose: true,
|
|
format: 'dd-mm-yyyy',
|
|
todayBtn: true,
|
|
todayHighlight: true
|
|
}).on('changeDate',function(event){
|
|
if(event.target.value !== ''){
|
|
vm.$emit('updateDate', event.target.value)
|
|
}
|
|
|
|
})
|
|
},
|
|
props: ['value']
|
|
}
|
|
</script>
|