22 lines
288 B
Vue
22 lines
288 B
Vue
|
|
<template>
|
||
|
|
<div class="groupSendResident"></div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
export default {
|
||
|
|
data() {
|
||
|
|
return {
|
||
|
|
current: 1,
|
||
|
|
}
|
||
|
|
},
|
||
|
|
methods: {},
|
||
|
|
onShow() {},
|
||
|
|
onReachBottom() {
|
||
|
|
this.current ++
|
||
|
|
},
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style lang="scss" scoped>
|
||
|
|
.groupSendResident {}
|
||
|
|
</style>
|