eliminado css sin usar
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user