Closed boscho87 closed 7 years ago
http://eonasdan.github.io/bootstrap-datetimepicker/Options/#format
This date-picker follows moment.js format tokens.
can you add an example... i dont know where i need to put the config proberties
Examples can be found in examples folder of this repo. Essentially you can pass any config property documented in above given link.
// Vue
export default {
data () {
return {
config :{
format: 'DD/MM/YYYY'
},
date : null,
}
}
}
<date-picker :config="config" v-model="date"></date-picker>
**I'm submitting a
How can i change the date format ?