Vue 格式化时间 显示几天前

插件

https://github.com/brockpetrie/vue-moment

安装

npm install vue-moment

引用插件

import Vue from 'vue'
const moment = require('moment')
// 中文
require('moment/locale/zh-cn')
Vue.use(require('vue-moment'),{
  moment
})

Element table 下使用

<el-table-column prop="created_at" label="日期">
  <template slot-scope="scope">
    {{scope.row.created_at|moment("YYYY-MM-DD HH:mm:ss")}}
  </template>
</el-table-column>

几天前

<span>{{ someDate | moment("from") }}</span>

支付宝红包

发布了6 篇原创文章 · 获赞 0 · 访问量 57

猜你喜欢

转载自blog.csdn.net/HelloMonkey564/article/details/105418791