We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Quick Start Guide
npm run serve
chat
createNew
I would expect can see chatrooms.
Chatrooms are not displayed. onSnapshot callback seems not to be called.
created() { this.detacher = this.refCollection // .orderBy("timeCreated", "desc") .where("owner", "==", this.$store.state.user.uid) .onSnapshot(snapshot => { this.articles = snapshot.docs.map(doc => { return Object.assign(doc.data(), { id: doc.id }) as BaseDocument; }); }); }
It's work.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Steps to reproduce
Quick Start Guide
at READ.MEnpm run serve
in terminalchat
andcreateNew
chatroomschat
What is expected?
I would expect can see chatrooms.
What is actually happening?
Chatrooms are not displayed.
onSnapshot callback seems not to be called.
It's work.
The text was updated successfully, but these errors were encountered: