今回firebaseの勉強として Vue.jsとFirebaseと作るみにWebサービス
を見ながら勉強をしていました。
そこでGoogle認証をしてログインをするところでなぜかAuthenticationのuserにユーザーが追加されていません。そのためログインしたときにEditor.vueの表示ができません.
Authenticationのmethodで許可にチェックはついています.
一応下にコードを入れておきます
home.vue
<template> <div id="home"> <h1>{{ msg }}</h1> <button @click="googleLogin">Googleアカウントでログイン</button> </div> </template> <script> export default { name: 'home', data() { return { msg: "Welcome to demomemo" }; }, methods: { googleLogin: function() { firebase.auth().signInWithRedirect(new firebase.auth.GoogleAuthProvider()); } } }; </script>
app.vue
<template> <div id="app"> <Home v-if="!isLogin"></Home> <Editor v-if="isLogin" :user="userData"></Editor> </div> </template> <script> import Home from "./components/Home.vue"; import Editor from "./components/Editor.vue"; export default { name: "app", data () { return { isLogin: false, userData: null }; }, created: function() { firebase.auth().onAuthStateChanged(user => { console.log(user); if (user) { this.isLogin = true; this.userData = user; } else { this.isLogin = false; this.userData = null; } }); }, components: { Home: Home, Editor: Editor } }; </script>
ご回答できる方がいたらよろしくお願い致します。
あなたの回答
tips
プレビュー