edit: valeur min à 1 pour éviter array vide dans génération du contenu

This commit is contained in:
2026-02-28 17:44:27 +01:00
parent a794ff3941
commit f4b775e509
+3 -3
View File
@@ -187,9 +187,9 @@
name : 'MainContent',
methods:{
divideItem(){
const half = Math.floor(this.maxItemCount/2);
this.partOne = this.getRandomInt(0,half);
this.partTwo = this.getRandomInt(0,half);
const half = Math.floor(this.maxItemCount/2)+1;
this.partOne = this.getRandomInt(1,half);
this.partTwo = this.getRandomInt(1,half);
this.partThree = this.maxItemCount-this.partTwo-this.partOne;
console.log(this.partOne,this.partTwo,this.partThree);
},