#27 Attendance list with all members

This commit is contained in:
Julian Krauser 2025-01-05 13:43:13 +01:00
parent b106ea6396
commit 05f8ebfb1f
4 changed files with 75 additions and 1 deletions

View file

@ -84,5 +84,10 @@ export const useMemberStore = defineStore("member", {
this.fetchMembers();
return result;
},
async printMemberList(){
return http.get(`/admin/member/print/namelist`, {
responseType: "blob",
});
}
},
});