Skip to content

Instantly share code, notes, and snippets.

View moonflame's full-sized avatar
🤩
Fighting!

Rayan Zhang moonflame

🤩
Fighting!
  • Chengdu, Sichuan, China
View GitHub Profile
@moonflame
moonflame / DatetimePicker_bug.js
Last active June 23, 2020 09:00
DatetimePicker bug (Vant Weapp)
Page({
data: {
currentDate: new Date().getTime(),
minDate: new Date().getTime()
},
onInput(event) {
this.setData({
currentDate: event.detail,
});