How to pass a vue.js value as a parameter to a rou

2019-01-19 05:00发布

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?

1条回答
女痞
2楼-- · 2019-01-19 05:28

You can just use v-bind for this, like following:

<a :href="'/example/' + item.id" class="button success">Click</a>
查看更多
登录 后发表回答