通过moment.js,进行格式转换

首先安装moment.js:
        npm install moment -s
其次在main.js引入moment.js:
        import moment from “moment”
        Vue.prototype.$moment = moment;

//借助moment.js进行转换
var dateValue1 = me.$moment(me.dateValue1).format('YYYY-MM-DD HH:mm:ss');
var dateValue2 = me.$moment(me.dateValue2).format('YYYY-MM-DD HH:mm:ss');

相关文章:

  • 2021-11-18
  • 2021-12-12
  • 2022-01-20
  • 2021-11-27
猜你喜欢
  • 2022-12-23
  • 2021-08-14
  • 2021-11-18
相关资源
相似解决方案