18 lines
304 B
Vue
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>
|