In my vue.js application, I have a route that looks like this:
/edit/ride/:rideId
When I try to link to this URL in my vue.js web app using the following code:
<a v-link="{ name: 'edit/ride', params: { rideId: ride.id }}" class="btn-edit">Edit</a>
I encounter the following error:
main.js:4043 Uncaught Error: There is no route named /edit/ride/
What could be causing this issue?