0👍
Since this is based on bootstrap make sure that you have good class order “container” > “row” > “col-md-12” (or similar). After you do this try the following.
Try to replace your object in “:config” with object from “data” called “options”. Something like this:
data: {
date: null,
options: {
widgetPositioning: {horizontal: 'auto', vertical: 'top'},
format: 'DD/MM/YYYY h:mm:ss',
useCurrent: false,
showClear: true,
showClose: true,
}
},
<date-picker name="date" v-model="date" :config="options"></date-picker>
- [Vuejs]-How to sort array of objects in laravel?
- [Vuejs]-How to print vuetify Data table with pagination
Source:stackexchange.com