在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
moment是一款多语言支持的日期处理类库, 在vue中如何使用呢?首先附上官网地址:http://momentjs.cn/, 毕竟查找api才是学习正途! 使用npm命令安装moment npm install moment --save 在main.js文件里引用moment // The Vue build version to load with the `import` command // (runtime-only or standalone) has been set in webpack.base.conf with an alias. import Vue from 'vue' import App from './App' import router from './router' import Moment from 'moment' // 定义全局时间戳过滤器 Vue.filter('formatDate', function(value) { return Moment(value).format('YYYY-MM-DD HH:mm:ss') }) Vue.config.productionTip = false /* eslint-disable no-new */ new Vue({ el: '#app', router, components: { App }, template: '<App/>' }) 在组件里使用 <div class="time">{{item.rateTime | formatDate}}</div> 常用的一些日期格式化方法 日期格式化 moment().format('MMMM Do YYYY, h:mm:ss a'); // 四月 16日 2019, 12:24:48 中午 moment().format('dddd'); // 星期二 moment().format("MMM Do YY"); // 4月 16日 19 moment().format('YYYY [escaped] YYYY'); // 2019 escaped 2019 moment().format(); // 2019-04-16T12:24:48+08:00 相对时间 moment("20111031", "YYYYMMDD").fromNow(); // 7 年前 moment("20120620", "YYYYMMDD").fromNow(); // 7 年前 moment().startOf('day').fromNow(); // 12 小时前 moment().endOf('day').fromNow(); // 12 小时内 moment().startOf('hour').fromNow(); // 28 分钟前 日历时间 moment().subtract(10, 'days').calendar(); // 2019年4月6日 moment().subtract(6, 'days').calendar(); // 上周三中午12点28 moment().subtract(3, 'days').calendar(); // 上周六中午12点28 moment().subtract(1, 'days').calendar(); // 昨天中午12点28分 moment().calendar(); // 今天中午12点28分 moment().add(1, 'days').calendar(); // 明天中午12点28分 moment().add(3, 'days').calendar(); // 本周五中午12点28 moment().add(10, 'days').calendar(); // 2019年4月26日 多语言支持 moment().format('L'); // 2019-04-16 moment().format('l'); // 2019-04-16 moment().format('LL'); // 2019年4月16日 moment().format('ll'); // 2019年4月16日 moment().format('LLL'); // 2019年4月16日中午12点28分 moment().format('lll'); // 2019年4月16日中午12点28分 moment().format('LLLL'); // 2019年4月16日星期二中午12点28分 moment().format('llll'); // 2019年4月16日星期二中午12点28分 说明文档
总结 到此这篇关于vue利用Moment插件格式化时间的文章就介绍到这了,更多相关vue用Moment格式化时间内容请搜索极客世界以前的文章或继续浏览下面的相关文章希望大家以后多多支持极客世界! |
请发表评论