#28 style: fix lint issues in auth components

This commit is contained in:
mono
2026-03-07 17:03:30 -05:00
parent 3112c82bb2
commit 7f73251c5e
5 changed files with 33 additions and 33 deletions

View File

@@ -1,29 +1,32 @@
<style scoped>
p {
font-size: 1.1rem;
color: #555;
}
</style>
<template>
<v-container class="d-flex flex-column align-center justify-center" style="height: 100vh;">
<v-progress-circular indeterminate color="primary" />
<p class="mt-4">Cerrando sesión</p>
</v-container>
</template>
<script>
import AuthService from '@/services/auth';
export default {
name: 'DonConfiao',
mounted() {
this.logout();
import AuthService from '@/services/auth';
export default {
name: 'DonConfiao',
mounted() {
this.logout();
},
methods: {
logout() {
AuthService.logout();
this.$router.push({
path: '/autenticarse'
});
},
methods: {
logout() {
AuthService.logout();
this.$router.push({
path: "/autenticarse"
});
},
},
};
},
};
</script>
<style scoped>
p {
font-size: 1.1rem;
color: #555;
}
</style>