You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-1
Original file line number
Diff line number
Diff line change
@@ -66,12 +66,14 @@ var vm = new Vue({
66
66
el:'#demo',
67
67
firebase:function () {
68
68
return {
69
-
anArray:db.ref('url/to/my/collection')
69
+
anArray:db.ref('url/to/my/collection/')
70
70
}
71
71
}
72
72
})
73
73
```
74
74
75
+
⚠️: This function will get executed only once. If you want to have automatic rebind (pretty much like a computed property) use a `$watch` and call `$unbind` and then `$bindAsArray`
76
+
75
77
**About the cancelCallback**:
76
78
77
79
> An optional callback that will be notified if your event subscription is ever canceled because your client does not have permission to read this data (or it had permission but has now lost it). This callback will be passed an `Error` object indicating why the failure occurred.
0 commit comments