vue.jsとfirestoreを使って、時刻(形式は、2021/04/21 15:51:00)を表示させたいと考えています。
そこで、時間は「firebase.firestore.FieldValue.serverTimestamp()」で取得できたのですが、
表示させる方法がわかりません。
<p class="post-time">{{ list.time}</p>
上記のように表示させると
該当のソースコード
<p class="post-time">{{ list.time}</p>
firebase .firestore() .collection("posts") .add({ title: this.title, description: this.description, genre: this.genre, time: firebase.firestore.FieldValue.serverTimestamp(), id: id });
回答1件
あなたの回答
tips
プレビュー