[Vuejs]-Unable to disable dates in vue js material datepicker

0👍

What you need to do is:

disabled: {
    to: new Date(2016, 0, 5), // Disable all dates up to specific date
    from: new Date(2016, 0, 26), // Disable all dates after specific date
}

Check the documentation at https://github.com/charliekassel/vuejs-datepicker

👤cdoshi

Leave a comment