export default { data(){ return{ productNews:[] } }, methods:{ addProducts(){ this.productNews.push({car:''}) }, getAlert(){ }, removeProduct(index){ this.productNews.splice(index,1); } } }</script>
就是在输入框 中v-model 用一个数组productNews[scope.$index].manufacturer 然后添加时,数组下标加一,删除时,数组下标减一
以上这篇vuejs 动态添加input框的实例讲解就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。
您可能感兴趣的文章: