30 lines
323 B
Vue
30 lines
323 B
Vue
|
|
<template>
|
||
|
|
<div class="handpick">
|
||
|
|
hhh
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
export default {
|
||
|
|
name: "handpick",
|
||
|
|
appName: "精选动态",
|
||
|
|
data() {
|
||
|
|
return {
|
||
|
|
|
||
|
|
}
|
||
|
|
},
|
||
|
|
methods: {
|
||
|
|
getList() {
|
||
|
|
}
|
||
|
|
},
|
||
|
|
onShow() {},
|
||
|
|
onReachBottom() {
|
||
|
|
this.current++
|
||
|
|
this.getList()
|
||
|
|
},
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style>
|
||
|
|
|
||
|
|
</style>
|