您的位置:首页 > Web前端 > Vue.js

Vue 格式化时间 显示几天前

2020-06-25 04:55 411 查看

插件

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>

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: