vue时间标签格式化

 format="yyyy-MM-dd"
            value-format="yyyy-MM-dd"


     format="yyyy-MM-dd hh:mm:ss"
          value-format="yyyy-MM-dd hh:mm:ss"

 引入moment

import Moment from 'moment'
Vue.prototype.moment = Moment
   var moment = require("moment");
      moment(this.startTime).format("YYYY-MM-DD HH:mm:ss");
      moment(this.endTime).format("YYYY-MM-DD HH:mm:ss");

 

 
posted @ 2022-06-01 12:39  快了星球  阅读(119)  评论(0)    收藏  举报