I want to separate my params in URL by dash like below:
localhost/add/5-ninja
in here the id is 5 and the name is ninja. When i changed the config to this:
path: '/:id-:name'
It doesn't work properly.
How can I create dash separated params in URL
I think it's not possible the way you like but here's my suggestion to achieve that result:
/:dashed
in your component:
Source