Archive filtering and bulk action button

This commit is contained in:
Jeffrey Biles
2020-03-18 01:25:53 -07:00
parent 2c13f9e8e8
commit bf1aeb4bd6
4 changed files with 8 additions and 1 deletions

View File

@@ -27,6 +27,7 @@ export const useEmailSelection = function(){
},
markRead(){ this.forSelected(e => e.read = true )},
markUnread(){ this.forSelected(e => e.read = false )},
archive(){ this.forSelected(e => e.archived = true); this.clear();},
})
return {