vant的日期组件面板打开,显示当前日期。
<van-datetime-picker
v-model="currentDate"
type="datetime"
/>
currentDate: new Date()
这么写会报错。
正确定义方法:
const now = new Date()
const year = now.getFullYear()
const month = String(now.getMonth() + 1).padStart(2, '0')
const day = String(now.getDate()).padStart(2, '0')
currentDate: [year, month, day]
这样也不影响设置min-date和max-date。
以上。