firebaseからデータ取得するとtimestamp型で帰ってくるので2021/1/11 00:00:00の形式に変換します。
絶対わすれるのでメモ
index.vue
<div v-for="comment in comments" :key="comment[0]">
<div>{{ comment[1].name }}</div>
<div>{{ comment[1].comment }}</div>
<div>{{ postedDay(comment[1].posted) }}</div>
</div>
methods: {
postedDay (timestamp) {
return (
timestamp.toDate().toLocaleString('ja-JP')
)
}
}