I don’t know how to get the data via
JavaScript
x
2
1
this.$fire.database
2
I’ve read the firebase docs but in firebase/nuxtJs different it becomes easier https://firebase.nuxtjs.org/
In firebase docs
JavaScript
1
11
11
1
import { getDatabase, ref, onValue} from "firebase/database";
2
3
const db = getDatabase();
4
const starCountRef = ref(db, 'posts/' + postId + '/starCount');
5
onValue(starCountRef, (snapshot) => {
6
const data = snapshot.val();
7
updateStarCount(postElement, data);
8
});
9
10
11
But when I call onValue, it doesn’t find it
JavaScript
1
2
1
this.$fire.database.onValue()
2
nuxt.config.js file
JavaScript
1
25
25
1
modules: [
2
// https://go.nuxtjs.dev/axios
3
'@nuxtjs/axios',
4
[
5
'@nuxtjs/firebase',
6
{
7
config: {
8
apiKey: "<private data>",
9
authDomain: "<private data>",
10
projectId: "<private data>",
11
storageBucket: "<private data>",
12
messagingSenderId: "<private data>",
13
appId: "<private data>"
14
},
15
services: {
16
auth: true, // Just as example. Can be any other service.
17
database: {
18
emulatorPort: 3000,
19
emulatorHost: 'localhost',
20
}
21
},
22
}
23
]
24
],
25
Advertisement
Answer
Simply
JavaScript
1
4
1
this.$fire.database.ref('name').on("value", function(e) {
2
console.log(e.val())
3
})
4
simple explanation :
JavaScript
1
2
1
ref("name")
2
Whenever the value is changed, the function will run