From angular docs :
The router link directive always treats the provided input as a delta to the current url.
For instance, if the curre
HTML:
{{ value }}
TS:
goToDetail(value) {
this.router.navigate([this.urlDetalle + value]);
}
this.urlDetalle is the absolute path an I concat the value to view the detail of any entity
It works fine!!