Issue
I need to use string varible as outletname rr
this is my code:
public redirect(): any {
let rr = 'productModal';
let rr2 = 'm/addProduct';
return this.router.navigate(
['link/link', {outlets: {rr: rr2}}]
);
}
Solution
public redirect(): any {
let rr = 'productModal';
let rr2 = 'm/addProduct';
return this.router.navigate(
['link/link', {outlets: {[rr]: rr2}}]
);
}
Answered By – Johansrk
This Answer collected from stackoverflow, is licensed under cc by-sa 2.5 , cc by-sa 3.0 and cc by-sa 4.0