我对如何在明天之前禁用任何日期感到有点困惑,即:我的用户只能选择明天(以及后天的任何一天)。
这个场景要怎么实现?
发布于 2020-10-21 18:26
共1个回答
EC
游客ecqXMk
你可以通过min-date
设置一个最小日期:
<v-date-picker
v-model='date'
:min-date='new Date()'
/>
如果要设置明天,可以这样做:
const today = new Date()
const tomorrow = new Date(today)
tomorrow.setDate(tomorrow.getDate() + 1)
<v-date-picker
v-model='date'
:min-date='tomorrow'
/>
回答问题