For my Angular app, which is component-based and uses Angular version 1.5.5 with TypeScript, I have a header component that includes a country dropdown. This header component is used across multiple pages. However, when a country is selected from the dropdown, that scope only applies to the current page and is lost when navigating to another page.
Is there a more efficient way to reuse the component in this scenario?