<script> import firebase from '@/plugins/firebase' export default { data: function () { return { room_title: '', room_id: '' } }, created() { const room_id = this.$route.params.id const db = firebase.firestore() const docRef = db.collection('room').doc('id') docRef.get().then(function (doc) { if (doc.exists) { this.room_title = "あばば" console.log("Document data:", doc.data().room_title) } else { // doc.data() will be undefined in this case console.log("No such document!"); } }).catch(function(error) { console.log("Error getting document:", error); }) } } </script>
上記でthis.room_title = "あばば"ここからroom_titleに値をいれてviewにroom_titleをだしたいのですが関数内からできません。どうすればいいでしょうか?
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/10/12 12:48