I have a route in Laravel that requires an id as a parameter.
Route::get(\'/example/{id}\', ExampleController@index)
If I had passed the d
You can just use v-bind for this, like following:
<a :href="'/example/' + item.id" class="button success">Click</a>