This commit is contained in:
Jeffrey Biles
2020-04-22 15:53:27 -07:00
parent a78269a2fc
commit 26479763c7

View File

@@ -1,9 +1,11 @@
import { reactive } from 'vue';
import axios from 'axios';
let emailSet = new Set()
let emailSet = new Set()
export const useEmailSelection = function(){
const emails = reactive(emailSet)
const forSelected = (fn) => {
emails.forEach(email => {
fn(email)