Este sitio web funciona mejor con JavaScript.
Inicio
Explorar
Ayuda
Iniciar sesión
Immanuel
/
skouter
Seguir
1
Destacar
0
Fork
0
Código
Incidencias
0
Pull Requests
0
Lanzamientos
0
Wiki
Actividad
Explorar el Código
Add logout function
master
Immanuel Onyeka
hace 1 año
padre
9c7ac0a199
commit
2a66cacd6f
Se han
modificado 2 ficheros
con
7 adiciones
y
5 borrados
Dividir vista
Opciones de diferencias
Mostrar estadísticas
Descargar archivo de parche
Descargar archivo de diferencias
+1
-0
components/app.vue
+6
-5
components/sign-out.vue
+ 1
- 0
components/app.vue
Ver fichero
@@ -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 fichero
@@ -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>
Escribir
Vista previa
Cargando…
Cancelar
Guardar