我的日期格式: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
答案 0 :(得分:0)
使用简单的js日期函数或任何时刻的js函数进行转换。
(new Date()).toISOString().split('T')[0]
答案 1 :(得分:-1)