This repository has been archived on 2025-02-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
iu-quiz-app/pages/index.vue
2022-10-17 19:26:56 +02:00

30 lines
824 B
Vue

<template>
<v-overlay color="transparent">
<v-progress-circular color="primary" indeterminate />
</v-overlay>
</template>
<script>
import { onAuthStateChanged } from 'firebase/auth'
export default {
name: 'IndexPage',
layout: 'empty',
created () {
// Setting an authentication state observer on the Firebase Auth object.
// This observer gets called when Auth finished initializing and
// whenever the user's sign-in state changes.
onAuthStateChanged(this.$auth, (user) => {
this.$store.commit('initFirebase')
if (user) {
// User is signed in; redirect to main page (dashboard)
this.$router.push({ name: 'dashboard' })
} else {
// User is signed out; redirect to login page
this.$router.push({ name: 'login' })
}
})
}
}
</script>