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 5ac6347 commit ba44803Copy full SHA for ba44803
src/lib/RoomsList/RoomsList.vue
@@ -130,12 +130,14 @@ export default {
130
loadingMoreRooms(val) {
131
this.$emit('loading-more-rooms', val)
132
},
133
- roomsLoaded(val) {
134
- if (val) {
135
- this.loadingMoreRooms = false
136
-
137
- if (!this.loadingRooms) {
138
- this.showLoader = false
+ roomsLoaded: {
+ immediate: true,
+ handler(val) {
+ if (val) {
+ this.loadingMoreRooms = false
+ if (!this.loadingRooms) {
139
+ this.showLoader = false
140
+ }
141
}
142
143
0 commit comments