clicking the Select All box

This commit is contained in:
Jeffrey Biles
2020-03-29 23:52:38 -07:00
parent ea22275726
commit b925a6f991
2 changed files with 20 additions and 2 deletions

View File

@@ -11,6 +11,14 @@ export const useEmailSelection = function(){
this.emails.add(id);
}
},
clear(){
this.emails.clear();
},
addMultiple(emails) {
emails.forEach(email => {
this.emails.add(email)
})
},
})
return { emailSelection }