2019-10-29 15:47:03

vue时间转换moment插件实例代码

import moment from 'moment';
export default {
  mounted: function() {
    this.init();
  },
  methods: {
    init() {
        var time=moment(new Date()).format("YYYY-MM-DD HH:mm:ss")
        console.log(time)
    },
  }
}

输出结果:2019-10-29 15:48:30

当前文章内容为原创转载请注明出处:http://www.good1230.com/detail/2019-10-29/494.html
最后生成于 2023-06-18 18:35:08
此内容有帮助 ?
0