We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
App.vueのcreatedでonAuthStateChanged内の処理が完了する前にDOMができているのが原因 ただonAuthStateChanged自体は非同期というよりコールバックみたいなものなので処理がいつ終わるかは制御できない よって、
onAuthStateChanged
<v-app>
v-if
currentUser
すれば良さそう
他にもアイディア求む
The text was updated successfully, but these errors were encountered:
@yattinda アサインした ブランチはdev-v2でもいいけどfeat/#108_separate_events_by_its_publish_statusから切るのが良さそう
dev-v2
feat/#108_separate_events_by_its_publish_status
Sorry, something went wrong.
yattinda
No branches or pull requests
問題
方針(提案)
App.vueのcreatedで
onAuthStateChanged
内の処理が完了する前にDOMができているのが原因ただ
onAuthStateChanged
自体は非同期というよりコールバックみたいなものなので処理がいつ終わるかは制御できないよって、
<v-app>
をv-if
で条件付きレンダリングonAuthStateChanged
の中の非同期関数でcurrentUser
の初期化などが完了した後にフラグを更新すれば良さそう
他にもアイディア求む
The text was updated successfully, but these errors were encountered: