1.下载 cnpm i moment --save
2.main.js 挂载
import moment from 'moment'//导入文件
Vue.prototype.$moment = moment;//赋值使用
3.组件中使用
凡是用的prototype 使用都要this.继承
this.$moment('string').format("YYYY-DD-MM")
this.$moment('2018-09-19T05:54:32.767Z').format("YYYY-DD-MM")
浏览器解析后 2018-09-19
网友评论