vuejs 动态添加input框的实例讲解(4)

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框的实例讲解就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/41cd3f799a9ebceca06f682dff81db94.html