vue/iview使用moment.js

方法一

main.js引入moment

获取当前时间

  this.time = this.$moment()._d; // 当前时间
this.time0 =this.$moment().subtract(1, 'hours')._d //当前时间的前一小时

打印this.$moment

vue/iview使用moment.js

方法二

当前页面引入Moment

  this.time = Moment().toDate(); // 当前时间
this.time0 = Moment().subtract(1, 'hours').toDate() //当前时间的前一小时

显示时,用iview中datepicker 的format

<DatePicker :value="time" format="yyyy-MM-dd HH:mm:ss " type="daterange" placement="bottom-end" placeholder="Select date" style="width: 200px"></DatePicker>

vue/iview使用moment.js

上一篇:mysql安装(CentOS 7.1 (64-bit system) MySQL 5.6.24)


下一篇:自动化测试管理平台ATMS(V1.0.1_7.29)下载