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.

26 lines
550 B

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