其他分享
首页 > 其他分享> > Vue Element 时间戳转为年月日

Vue Element 时间戳转为年月日

作者:互联网

话不多说 直接上代码

new Date(parseInt(odate1)).toLocaleString().split(' ')[0].replace('/', '-').replace('/', '-')

这里的"odate1" 是字符戳 例如1632982041000
可以直接转化为2021-9-29
转自来自于https://segmentfault.com/q/1010000018645443

标签:Vue,toLocaleString,转自,replace,odate1,parseInt,1010000018645443,年月日,Element
来源: https://blog.csdn.net/weixin_39891473/article/details/120454194