Club System

This commit is contained in:
2026-06-02 20:54:10 +02:00
parent c68c4d18b5
commit 0b18d289ef
38 changed files with 1464 additions and 118 deletions

View File

@@ -127,6 +127,10 @@ export function FSUploader(){
*/
handleRemoveFile( index ){
this.files.splice(index, 1);
},
changeFileState( index, newState ){
this.files[index].state = newState;
}
}