vue-cli 利用moment.js转化时间格式为YYYY年MM月DD日,或者是YYYY-MM-DD HH:MM:SS 等格式...
1.在mian.js引入momentimportmomentfrom'moment'Vue.prototype.$moment='moment'2.在main.js设置全局过滤器Vue.filter('moment',function(value,formatString){formatString=formatString||'YYYY年MM月DD日';//returnmoment(value)