我有一個表將生成動態組件,我想刪除它,如果我點擊刪除按鈕或處理其他事情。 我在這裏做錯了什麼?嘗試拼接和刪除方法也無法正常工作。 請指教。刪除動態生成的組件VueJS
<table>
<tr is="item-grid" v-for='index in counter'></tr>
<button @click="counter++" type="button">TEST ADD</button>
</table>
<template id="item-template">
<tr>
<td><input type="text" class="form-control" v-model="inventory_name" readonly/></td>
<td><input type="text" class="form-control" v-model="sku"/></td>
<td><input type="text" class="form-control" v-model="qty"/></td>
<td><input v-model="unit_price"></input></td>
<td><span v-text="unit_total"></span></td>
<td><button @click="remove(this)" type="button">delete</button></td>
</tr>
</template>
這是根成分,它?如果沒有,只需從父組件內部刪除它(例如用'v-if')。 – Cristy