[Vuejs]-Dynamic boostrap card body + image in Vue js ( firestore cloud DB + local image source )

0👍

Thanks to Brad Traversy & Academind, I used axios to put and get images from a node back-end server ( express js ).

A second approach is to store both data + image in firebase firestore. I was not sure of the performance of second approach and hence wanted to store images in server itself.

I could not make out much time difference between two approaches. To complete my project, I have decided to store data + image in firestore and access with firestore API’s.

more info on firestore can be found here – https://firebase.google.com/docs/firestore/quickstart

Leave a comment