0👍
Try this simple one:
mounted() {
firestore.collection("Husqvarnas").get()
.then(function(snapshot) {
snapshot.forEach(function(doc) {
console.log(doc.id, " => ", doc.data());
});
});
}
- [Vuejs]-Scroll a part of a fixed container with nested flex containers (vue/tailwind)
- [Vuejs]-Vue.js reactivity for new object
0👍
It was Security Rules, had to change in default rules from False, to True.
rules_version = '2';
service cloud.firestore {
match /databases/{database}/documents {
match /{document=**} {
allow read, write: if true;
}
}
}
- [Vuejs]-How to make a loading Spinner with my logo
- [Vuejs]-Validate form using Vuelidate on page load
Source:stackexchange.com