下载 moment.js npm install moment --save 引入 moment.js import Moment from 'moment' Vue.prototype.moment = Moment 组件中 表格部分代码 <Table size="small" border stripe :columns="orderColumns" :data="orderList" style="border-radius: 3px;"> <template slot-scope="{ row, index }" slot="action"> <Button type="primary" size="small" style="margin-right: 5px" @click="handleEdit(index)">编辑</Button> <Button type="error" size="small" @click="handleDelete(row, index)">删除</Button> </template> </Table> 表格的列对应的代码 orderColumns: [ { title: '日期', key: 'billingDate', width: '120px', align: 'center', render: (h, params) => {