使用切片的Vue JS表

时间:2018-12-14 03:24:17

标签: vue.js

我的日期格式:2018-12-29 00:00:00我可以在表格日期字段中使用.slice(0,10)吗?

<template>
    <table striped hover :items="Food" :fields="food_fields">
    </table>
</template>

data() {
        return {
            Food: [......//data],
            food_fields: [
                {
                    key: 'name', label: 'Name'
                },
                {
                    key: 'date', label: 'Date'
                }
            ],
        }
    },

现在我的餐桌秀了:

用餐日期

Apple 2018-12-29 00:00:00(我想要2018-12-29)

橙色2018-12-30 00:00:00

2 个答案:

答案 0 :(得分:0)

使用简单的js日期函数或任何时刻的js函数进行转换。

(new Date()).toISOString().split('T')[0]

答案 1 :(得分:-1)

改为使用moment.js。

我们遇到了同样的问题,我使用了moment.js。

选中此link