Hello everyone I'm new at making app using vue.js I'm wondering How to add rows base on the specified number on textbox.
this is my fiddle
https://jsfiddle.net/7nxhygLp/2/
script
var evaluate = new Vue({
el: "#evaluate",
data: {
rows: [
]
},
methods:{
addRow: function(){
this.rows.push({});
},
removeRow: function(row){
//console.log(row);
this.rows.$remove(row);
}
}
});