1.在mian.js引入moment import moment from 'moment' Vue.prototype.$moment = 'moment' 2. 在main.js 设置全局过滤器 Vue.filter('moment', function (value, formatString) { formatString = formatString || 'YYYY年MM月DD日'; // return moment(value).format(formatString); // v