健康
date
May 3, 2021
slug
what-make-vs-code
status
Published
tags
健康
summary
type
Post
手指关节骨骼就医检查!
2021-10月:冬季供暖干燥,用棉签湿润鼻孔。
🎈2021:孩子揉眼睛时看着点避免划伤眼睛。
不要掏耳朵,
注意修剪指甲边角要圆润,
export default function formatDate(date, local) {
const d = new Date(date)
const options = { year: 'numeric', month: 'short', day: 'numeric' }
const res = d.toLocaleDateString(local, options)
return local.slice(0, 2).toLowerCase() === 'zh'
? res.replace('年', ' 年 ').replace('月', ' 月 ').replace('日', ' 日')
: res
}