我正在使用Vue.js創建一個表,我想爲每個傳遞contactID的行定義一個onClick事件。這裏是代碼:如何將參數傳遞給Vue @click
<tr v-for="item in items" class="static"
v-bind:class="{'evenRow': item.oddeven=='1', 'oddRow': item.oddeven=='0' }"
@click="addToCount('{item.contactID}')"
>
<td>{{item.contactName}}</td>
<td>{{item.recipient}}</td>
</tr>
點擊一行,它正在呼叫addToCount()
,這是工作。我想通過item.contactID
到addToCount()
。有人可以爲此提出正確的語法嗎?謝謝
什麼如果我想傳遞的參數沒有迭代並且可以鍵入,但是相當硬編碼爲'Interview Room Green Room Bavarian Caviar Room Sky Room' 我想在switchRoom方法中使用a元素的文本內容? –
@AkinHwan如果它已經被硬編碼,只需發送文本作爲參數'@ click =「switchRoom('Sky Room')」' –