Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created September 7, 2021 01:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/d85762e6c35afc73494345d41ccfb6d0 to your computer and use it in GitHub Desktop.
Save parzibyte/d85762e6c35afc73494345d41ccfb6d0 to your computer and use it in GitHub Desktop.
guardarTarea() {
const nuevaTarea = new TareaPendiente(this.nombreTarea);
this.tareas.push(nuevaTarea);
this.tareasService.guardarTareas(this.tareas);
this.obtenerTareas();
// Y limpiamos el input
this.nombreTarea = "";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment