feat:#15 added selection in datatable to store and removed selectAll

This commit is contained in:
masterElmar
2023-11-29 01:51:20 +01:00
parent 6666faf802
commit d41e6f4a3c
6 changed files with 56 additions and 118 deletions

View File

@@ -33,6 +33,9 @@ const moduleStore = defineStore("moduleStore", {
getAllModules(): Module[] {
return Array.from(this.modules.values());
},
containsModule(module: Module): boolean {
return this.modules.has(module.uuid);
}
},
});