[Vuejs]-Vue datetimepicker – The month view show only 1 row

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>

Leave a comment