vue { title: '直播开始时间', key: 'start_time', dataIndex: 'start_time' }, 格式化
时间: 2024-05-27 14:14:14 浏览: 81
<template>
<span>{{ formatDate(row.start_time) }}</span>
</template>
<script>
export default {
props: {
row: {
type: Object,
required: true
}
},
methods: {
formatDate(date) {
const options = { year: 'numeric', month: 'short', day: 'numeric', hour: 'numeric', minute: 'numeric', hour12: true };
const formattedDate = new Date(date).toLocaleDateString('en-US', options);
return formattedDate;
}
}
}
</script>
阅读全文