mirror of
https://github.com/romancm/gamebrary
synced 2025-01-08 17:28:46 +00:00
29 lines
682 B
Vue
29 lines
682 B
Vue
<template lang="html">
|
|
<b-button @click="signOut" variant="dark">
|
|
{{ $t('global.signOut') }}
|
|
</b-button>
|
|
</template>
|
|
|
|
<script>
|
|
import firebase from 'firebase/app';
|
|
import 'firebase/auth';
|
|
|
|
export default {
|
|
methods: {
|
|
signOut() {
|
|
firebase.auth().signOut()
|
|
.then(() => {
|
|
const exitUrl = process.env.NODE_ENV === 'development'
|
|
? 'http://localhost:3000'
|
|
: 'https://gamebrary.com';
|
|
|
|
this.$store.commit('CLEAR_SESSION');
|
|
window.location.href = exitUrl;
|
|
})
|
|
.catch((error) => {
|
|
this.$bvToast.toast(error, { title: 'Error', variant: 'danger' });
|
|
});
|
|
},
|
|
},
|
|
};
|
|
</script>
|