I have a router like this:
routes: [
{
path: '/survey/:surveyHash',
name: 'survey',
component: Survey,
props: true,
},
In the component I'm trying to get surveyHash in props. The trouble is I can't do it when there are / slashes inside surveyHash.
Is there a solution in vue-router?