new Date().toLocaleDateString使用方法

//zh-CN是中文, en-US是英文
new Date(date).toLocaleDateString('zh-CN', options)
//option参数值
//dateStyle:可能的值为full、long、medium、short。
//timeStyle:可能的值为full、long、medium、short。
//month:可能的值为numeric、2-digit、long、short、narrow。
//year:可能的值为numeric、2-digit。
//weekday:可能的值为long、short、narrow。
//day、hour、minute、second:可能的值为numeric、2-digit。
//timeZone:可能的值为 IANA 的时区数据库。
//timeZooneName:可能的值为long、short。
//hour12:24小时周期还是12小时周期,可能的值为true、false

new Date().toLocaleDateString使用方法_第1张图片
用这种方式能够快速得到项目中所需要的中文日期格式

你可能感兴趣的:(vue.js)