这是我的小提琴。 https://jsfiddle.net/7nxhygLp/20/
methods:{
addRow: function(){
for(var i=0; i < this.number; i++){
this.rows.push({});
}
},
如何制作,以使行长不超过10?
答案 0 :(得分:2)
methods:{
addRow: function(){
for(var i=0; i < this.number && i < 10; i++){
this.rows.push({});
}
},
答案 1 :(得分:0)
任何寻找答案的人。 你可以回顾这个小提琴。
https://jsfiddle.net/7nxhygLp/21/
methods:{
addRow: function(){
this.number = parseInt(this.number);
if(total + this.number <= 10)
{
total += this.number;
for(var i=0; i < this.number; i++){
this.rows.push({});
}
}
}