eliminado css sin usar

This commit is contained in:
2023-03-02 08:01:50 +01:00
parent ce47cd8e84
commit 7fd1f10e57
2 changed files with 4 additions and 8 deletions

View File

@@ -69,7 +69,6 @@ import { useRouter } from "vue-router";
import { useQuasar } from "quasar";
const $q = useQuasar();
const listaStore = useListaStore();
const $router = useRouter();
@@ -98,6 +97,7 @@ const recibeDatos = () => {
usuarios.value = item;
});
};
const login = () => {
listaStore
.login(email.value, password.value)
@@ -125,9 +125,6 @@ const btnLoginDisable = () => {
</script>
<style scoped>
.q-card {
width: 360px;
}
a:link,
a:visited,
a:active {

View File

@@ -122,6 +122,7 @@ const recibeDatos = () => {
usuarios.value = item;
});
};
const comprobarUsername = computed(() => {
let filtro = usuarios.value?.filter(
(user) => user.username.toLowerCase() == username.value.trim().toLowerCase()
@@ -143,9 +144,11 @@ const comprobarEmail = computed(() => {
}
return false;
});
const comprobarConfirmPassword = computed(
() => password.value != confirmpassword.value
);
const btnRegisterDisable = () => {
if (
username.value == null ||
@@ -188,10 +191,6 @@ const registrar = () => {
</script>
<style scoped>
.q-card {
width: 360px;
}
a:link,
a:visited,
a:active {