I have a route in Laravel that requires an id as a parameter.
Route::get('/example/{id}', ExampleController@index)
If I had passed the data from the Laravel controller to the view value I would pass it like this:
<a href="/example/{{id}}" class="button success">Click</a>
But my id
is a vue
value:
<tr v-for="item in items">
<td>@{{ item.id }}</td>
<td>@{{ item.name }}</td>
<td>@{{ item.number }}</td>
<td>@{{ item.address}}</td>
<td v-if="item.status==0"><a href="/example/@{{item.id}}" class="button success">Click</a></td>
</tr>
Which is the correct way to do this?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…