1200字范文,内容丰富有趣,写作的好帮手!
1200字范文 > vue中使用moment处理时间戳转换成日期或时间格式

vue中使用moment处理时间戳转换成日期或时间格式

时间:2020-10-24 17:07:39

相关推荐

vue中使用moment处理时间戳转换成日期或时间格式

vue中使用moment处理时间戳转换成日期或时间格式

npm i moment

import moment from 'moment'

<template><div><p>{{time | Time }}</p></div></template><script>import moment from "moment"; //处理时间export default {data() {return {time: null,};},created() {this.time = new Date().getTime();},filters: {Time(e) {//处理时间return moment(parseInt(e)).format("YYYY-MM-DD HH:mm:ss");},},methods: {},};</script><style></style>

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。