Pass data with routerLink

How do I pass data between routed components with the routerLink template directive?

<div class="navbtn" [routerLink]="'/blog'">blubb</div>

I tried everything.
Fragments, queryparams, params, state, extras, etc. etc.

I managed to get it done with

this.Router.navigateByUrl(url, { state: extras })

But I have to use the routerLink template directive because of routerLinkActive.

Thank you in advance kind strangers :kissing:

"@angular/core": "13.3.11",
"@ionic/angular": "^6.3.2",

you arent passing any value to the routerLink, just the url… if you read the docs,it shows you how. Angular