We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f46d51b commit 10d52ddCopy full SHA for 10d52dd
README.md
@@ -52,6 +52,13 @@ vm.$firebaseRefs.anArray.push({
52
})
53
```
54
55
+Alternatively, you can also manually bind to a Firebase ref with the `$bindAsObject` or `$bindAsArray` instance methods:
56
+
57
+``` js
58
+vm.$bindAsObject('user', myFirebaseRef.child('user'))
59
+vm.$bindAsArray('items', myFirebaseRef.child('items').limitToLast(25))
60
+```
61
62
## Data Normalization
63
64
### Array Bindings
0 commit comments