Hi!
Is there any way to make custom router title. I need to put “config.title” on the first place, before “route.title”?
It should look like “MyTitle | MyRoute”. By default it is reversed.
1 Like
The router has a callback which could be used:
router.transformTitle = title => { ... your code }
There you can adjust at your will.
Best regards.
1 Like