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