praveenpuglia / vuetify-daterange-picker

The missing date range picker for Vuetify JS you have been looking for.
https://vuetify-daterange-picker.gitbook.io/docs
MIT License
197 stars 59 forks source link

Markup is broken #50

Closed akaNightmare closed 5 years ago

akaNightmare commented 5 years ago

image

praveenpuglia commented 5 years ago

Explanation? What do you mean?

It looks like broken because by default the input takes up a specific width which cuts off the text.

Try this.

<v-daterange :input-props="inputProps"></v-daterange>
data() {
  return {
    inputProps: {style: { width: '240px' } },
  }
}