Introducing CrudHunt:Open-source Full-stack CRUDs for Next.js by KeenThemes
Browse CrudHunt

How i can pass firebase data to customers


import firebase from "firebase/app";
import { defineComponent, ref, onMounted } from "vue";

interface ICustomer {
id: number;
name: string;
email: string;
}

const customers: Array<ICustomer> = [
{
id: Math.floor(Math.random() * 99999) + 1,
name: "Emma Smith",
email: "e.smith@kpmg.com.au",
},
{
id: Math.floor(Math.random() * 99999) + 1,
name: "Melody Macy",
email: "melody@altbox.com",
},
];

firebase
.firestore()
.collection("Spark/Datos/Usuarios")
.onSnapshot((querySnapshot) => {
interface ICustomer {
id: number;
name: string;
email: string;
}
const data: Array<ICustomer> = [];
querySnapshot.forEach((doc) => {
data.push({
id: doc.data().id,
name: doc.data().name,
email: doc.data().email
});
return data
});
console.log("VACIO: ", JSON.parse(JSON.stringify(data)));
console.log("LLENO: ", JSON.parse(JSON.stringify(data)));
});


export { ICustomer };

export default customers;


Text formatting options
Submit
Here's a how to add some HTML formatting to your comment:
  • <pre></pre> for JS codes block
  • <pre lang="html"></pre> for HTML code block
  • <pre lang="scss"></pre> for SCSS code block
  • <pre lang="php"></pre> for PHP code block
  • <code></code> for single line of code
  • <strong></strong> to make things bold
  • <em></em> to emphasize
  • <ul><li></li></ul>  to make list
  • <ol><li></li></ol>  to make ordered list
  • <h3></h3> to make headings
  • <a></a> for links
  • <img> to paste in an image
  • <blockquote></blockquote> to quote somebody
  • happy  :)
  • shocked  :|
  • sad  :(

Replies (0)