I need to create a deep link with query string parameters for a component, so that when the link is clicked, it opens up the component in the browser.
For example:
exmaple.com/MyComponent?Id=10
I want to include a link in an email that will open the component and display information for Id=10 in a modal within the same component.
I prefer not to use a router link in the HTML since it is a single component only.
Although I have some understanding of routing in Angular 2, I am unsure how it works without using a router link.
Thank you.