This commit is contained in:
parent
8cec11c813
commit
ea125723e3
|
@ -34,9 +34,7 @@ export default Vue.extend({
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
this.$nextTick(() => {
|
|
||||||
this.zap();
|
this.zap();
|
||||||
});
|
|
||||||
},
|
},
|
||||||
beforeDestroy() {
|
beforeDestroy() {
|
||||||
this.disconnect();
|
this.disconnect();
|
||||||
|
@ -51,7 +49,9 @@ export default Vue.extend({
|
||||||
this.posts = posts;
|
this.posts = posts;
|
||||||
this.fetching = false;
|
this.fetching = false;
|
||||||
|
|
||||||
|
this.$nextTick(() => {
|
||||||
this.scrollToBottom();
|
this.scrollToBottom();
|
||||||
|
});
|
||||||
|
|
||||||
this.disconnect();
|
this.disconnect();
|
||||||
this.connection = new ChannelStream(this.channel.id);
|
this.connection = new ChannelStream(this.channel.id);
|
||||||
|
|
Loading…
Reference in New Issue