[Vuejs]-How to display timestamps in a Vue.js/Firebase app

0👍

I think you need to convert Firestore Timestamp to Javascript Date before using it with moment js

appData.timestamp = moment(appData.timestamp.toDate()).format('lll')

0👍

Firebase timestamp can be rendered as milliseconds since the epoch which can be used in the moment constructor

moment(doc.timestamp.toMillis()).format('lll')

Leave a comment