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')
- [Vuejs]-Clicking non Vuetify button does not update data in v-data-table
- [Vuejs]-How To Create Checking Method To Check The User Input Is Match With The ID provided?
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')
Source:stackexchange.com