With simple urls the folowing routes the following examples:
<a [routerLink]="['/foo/bar']"></a>
and
<a routerLink="/foo/bar"></a>
will make no difference. But even in the Angular Documentation we find examples like:
<a [routerLink]="['/user/bob']" preserveQueryParams preserveFragment>
link to user component
</a>
So what is te advantage of using the attribute binding instead simple binding with routerLink directive in angular?