本文主要是介绍vue时间戳的用法,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1.新建一个js文件用来存放时间格式的代码
代码如下:
export function timestampToTime(timestamp) {let now = new Date(timestamp*1000);let year = now.getFullYear(); let month = now.getMonth()+1; let date = now.getDate(); let hour = now.getHours(); let minute = now.getMinutes(); let second = now.getSeconds(); return year+"-"+month+"-"+date+" "+hour+":"+minute+":"+second;
}
2.在需要对时间戳进行格式化处理的组件中引入上面的js文件
代码如下(示例):
import {timestampToTime} from "@/src/utils/formdate.js"
//对时间进行格式化
date=timestampToTime(time)
这篇关于vue时间戳的用法的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!