<div class="info-other">
<span class="date" v-show="showData(value)">{{ commentInfo.created }}</span>
<span>{{ commentInfo.style }}</span>
</div>
methods: {
showData(value) {
// 1.将时间戳转成Date对象
const data = new Date(value * 1000)
// 2.将data进行格式化
return formatDate(data, "yyyy/MM/dd hh:mm:ss")
}
},
vue3 methods调用时间戳,报错属性未定义!
- 写回答
- 好问题 0 提建议
- 关注问题
- 邀请回答
-