Test frontend #only_compile

This commit is contained in:
2023-10-25 23:46:21 -05:00
parent f4013d1196
commit 47329ac04e
6 changed files with 17 additions and 8 deletions

View File

@@ -82,6 +82,14 @@ export const useDocumentStore = defineStore({
this.document = this.document.filter(e => document.key !== e.key)
this.selectedDocuments = this.selectedDocuments.filter(e => document.key !== e.key)
},
updateUploadingDocuments(key: number){
this.uploadCount++;
this.uploadingDocuments.forEach((document) => {
if(document.key === key) {
document.progress++
}
})
},
pushUploadingDocuments(name: string){
this.uploadCount++;
const document = {