Level 88
You can give it a min property
<v-date-picker v-model="date" min="2016-06-15"></v-date-picker>
Documentation: https://vuetifyjs.com/en/components/date-pickers
You can retrieve the current date by using the library moment.js: https://momentjs.com/
Or you can use javascript to get the current date: https://stackoverflow.com/questions/1531093/how-do-i-get-the-current-date-in-javascript
1 like