Nuxt.jsでアプリ開発をしております。
middlewareでFirebaseからユーザーデータを取得しstoreに保存しております。
その値をmountedでdata内の変数に格納したいのですが、なぜか格納されません。
middlewareでfirebaseからデータを取得し終わる前にmountedが実行されてしまっているせいだと思うのですが、こういう場合どのように対処したら良いのでしょうか?
js
1 2// middleware/authenticated.js 3 4import { db, auth } from '~/plugins/firebase' 5 6export default function({ route, store, redirect }) { 7 auth.onAuthStateChanged((user) => { 8 if (user) { 9 db.collection('users') 10 .doc(user.uid) 11 .get() 12 .then((doc) => { 13 if (doc.exists) { 14 store.commit('setUser', doc.data()) // ★ここでユーザーデータをstoreに保存しています 15 } else { 16 // 新規ユーザーの登録処理 17 } 18 }) 19 } 20 }) 21} 22
js
1 2// store/index.js 3 4export const state = () => ({ 5 user: {} 6}) 7 8export const mutations = { 9 setUser(state, user) { 10 state.user = user 11 } 12} 13
vue
1 2// pages/mypage.vue 3 4<template> 5 <div> 6 {{ onamae }}<br /> <!-- ★ここで表示できません! --> 7 {{ birth }}<br /> 8 {{ profile }} 9 </div> 10</template> 11 12<script> 13import { mapGetters } from 'vuex' 14 15export default { 16 layout: 'mypage', 17 18 data() { 19 return { 20 onamae: '', 21 birth: null, 22 profile: '', 23 }, 24 25 computed: { 26 ...mapGetters(['user']), 27 }, 28 29 mounted() { 30 // ユーザーデータをセット 31 this.onamae = this.user.onamae 32 this.birth = this.user.birth 33 this.profile = this.user.profile 34 } 35} 36</script>
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/04/19 14:33