[Vuejs]-Handling Laravel Links on Vue

0👍

You can send it as a component property. like this:

<Component foo_route="{{route('foo.update')}}"></Component>

And after you can use it in your component like this:

this.foo_route

Leave a comment