I've integrated cleave.js into my Vue.js project to create a date input field.
Here's the option configuration I used:
<cleave :options="{
date: true,
datePattern: ['m', 'd','Y']
}" id="date-input" placeholder="MM/DD/YYYY" type="text"></cleave>
Now, I'd like to know how I can set the maximum value for the year (Y) in this setup?