Files
servicio_social_front/components/layouts/Logout.vue
T
2020-11-10 23:25:34 -06:00

18 lines
304 B
Vue

<template>
<section>
<div class="container is-flex is-justify-content-flex-end">
<button class="button is-danger is-small my-2">Cerrar Sesión</button>
</div>
</section>
</template>
<script>
export default {}
</script>
<style scoped>
section {
background-color: #bb8800;
}
</style>