[Vuejs]-Passing Laravel route to vue component's Href or router-link

0👍

Okay i solved it and it was pretty simple!

I simply added to data() the below code

categoryRoute: "/categories/",

Then adjusted the href like so

:href="this.categoryRoute + category.slug"

Leave a comment