I'm using Angular-9. In a Grid, I'm building a Link as below:
<a [routerLink]="['/assortmentplanning/planmanagement/open-plan', data.name, data.channelName]">
{{data.name}}
</a>
I want to Encode the URL Parameters and Decode in receiving Component. How to do this in Angular?