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

@@ -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 {