tiny-vue/examples/sites/demos/mobile-first/app/pull-refresh/loosing-text.vue

28 lines
536 B
Vue

<template>
<tiny-pull-refresh v-model="isLoading" @refresh="onRefresh" loosing-text="可以了,可以了,别扒拉了!">
<h3 v-for="index in 5" :key="index">hello pull-refresh</h3>
</tiny-pull-refresh>
</template>
<script>
import { PullRefresh } from '@opentiny/vue'
export default {
components: {
TinyPullRefresh: PullRefresh
},
data() {
return {
isLoading: false
}
},
methods: {
onRefresh() {
setTimeout(() => {
this.isLoading = false
}, 1000)
}
}
}
</script>