Files
Andres2908 0913fc6166 loading
2022-03-18 18:24:59 -06:00

43 lines
711 B
Vue

<template>
<section>
<div
class="container is-flex is-justify-content-space-between is-align-items-center"
>
<h2 class="m-2 has-text-white">{{ usuario }}</h2>
<b-button
type="is-danger"
size="is-small"
class="m-2 rojo"
@click="cerrarSesion()"
>
Cerrar Sesión
</b-button>
</div>
</section>
</template>
<script>
export default {
data() {
return { usuario: localStorage.getItem('usuario') }
},
methods: {
cerrarSesion() {
localStorage.clear()
this.$router.replace('/')
},
},
}
</script>
<style scoped>
section {
background-color: #bb8704;
}
.rojo {
background-color: #dc3545;
}
</style>