0👍
✅
You should listen for value event
value: Read and listen for changes to the entire contents of a path.
this.$firebaseRefs.Team_Counter.child('numOfTeam').on('value', function(snapshot) {
// Do whatever
});
once('value')
only runs 1 time, but on('value')
will be trigger when value changed
Source:stackexchange.com