You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

25 lines
550 B

<template>
<home-group-pending ref="pendingPanel" :embedded="false" />
</template>
<script>
import homeGroupPending from '@/components/tab-bar/homeGroupPending.vue'
export default {
components: {
homeGroupPending
},
onLoad(option) {
this.$nextTick(() => {
if (this.$refs.pendingPanel && this.$refs.pendingPanel.init) {
this.$refs.pendingPanel.init(option)
}
})
},
onReachBottom() {
if (this.$refs.pendingPanel && this.$refs.pendingPanel.loadMore) {
this.$refs.pendingPanel.loadMore()
}
}
}
</script>