licp
2024-04-16 c1e5dfb4c72a0ab2478d3b7295ab7deecd3f8c8c
src/util/date.js
@@ -12,5 +12,10 @@
  }
  year = year + '-'
  let days = date.getDate()
  return year + month + days
  if (days < 10) {
    days = '0' + days
  } else {
    days = days
  }
  return (year + month + days)
}