Este site funciona melhor com JavaScript.
Página inicial
Explorar
Ajuda
Acessar
Immanuel
/
skouter
Observar
1
Favorito
0
Fork
0
Código
Issues
0
Pull requests
0
Versões
0
Wiki
Atividade
Ver código fonte
Add logout function
master
Immanuel Onyeka
1 ano atrás
pai
9c7ac0a199
commit
2a66cacd6f
2 arquivos alterados
com
7 adições
e
5 exclusões
Visão dividida
Opções de diferenças
Mostrar estatísticas
Baixar arquivo de patch
Baixar arquivo de diferenças
+1
-0
components/app.vue
+6
-5
components/sign-out.vue
+ 1
- 0
components/app.vue
Ver arquivo
@@ -153,6 +153,7 @@ function start() {
}).catch(error => {
console.log("An error occured %O", error)
this.loadingError = "Could not initialize app."
window.location.hash = 'login'
})
}
+ 6
- 5
components/sign-out.vue
Ver arquivo
@@ -3,20 +3,21 @@
<section class="inputs centered">
<h4>Are you sure you want to log out?</h4>
<button>Logout</button>
<button
@click="logout"
>Logout</button>
</section>
</div>
</template>
<script>
function ready() {
function logout() {
document.cookie= "skouter="
window.location.reload()
}
export default {
methods: {
ready
logout
}
}
</script>
</script>
Escrever
Pré-visualização
Carregando…
Cancelar
Salvar