日期时间格式化库Moment
问题
前端页面渲染的后端时间数据,格式不统一,时区不规范等问题
解决办法
安装类库 Moment
1 | npm install moment --save |
全局生效
在main.js文件中增加以下内容
1 | import Moment from 'moment' |
在组件中配置
1 | {{ row.update_time | formatDate }} |
局部生效
在组件script中配置
1 | import Moment from 'moment' |
在组件中template引用
1 | {{ row.update_time | timeFliter }} |