Skip to content

Instantly share code, notes, and snippets.

View andreav94's full-sized avatar

andrea vecchio andreav94

View GitHub Profile
//PostRepository.js
import db from "firestore"
import {
vuexStore
} from "@/store/index.js";
export default {
async setupRealtimeConnection(fn) {
return db.collection("posts")
.onSnapshot(fn(querySnapshot));