I currently have 3 separate components, namely PersonalInfoComponent
, EducationalInfoComponent
, and ExperienceComponent
. These components are all being displayed within the ResumeComponent
.
The issue I am facing is that when a user enters information in the PersonalInfoComponent
, moves to the EducationalInfoComponent
, and then returns to the PersonalInfoComponent
, the data gets refreshed. This is happening because the components are loaded each time, causing the form to reset.
My goal is to allow users to fill out all the necessary information in each component before submitting all the data with just one click.
Thank you for your help in advance.