<script> import firebase from '@/plugins/firebase' export default { name: 'postsindex', data: function () { return { posts: [] } }, created() { const db = firebase.firestore() const docRef = db.collection('room').doc() const roomSnapshot = docRef.get() roomSnapshot.forEach(function (doc) { this.posts.push(doc.data()) }) } } </script>
nuxtで上記のコードでfirestoreのデータをpostsに配列で入れたいです。ただ上記のコードだと
roomSnapshot.forEach is not a function
とエラーが出てしまいます。
回答1件
あなたの回答
tips
プレビュー