forked from opentiny/tiny-vue
58 lines
966 B
Vue
58 lines
966 B
Vue
<template>
|
|
<div>
|
|
<div class="page__hd">
|
|
<h1 class="page__title">Refresh</h1>
|
|
<p class="page__desc">下拉刷新</p>
|
|
</div>
|
|
<tiny-pull-refresh
|
|
v-model="isLoading"
|
|
@refresh="onRefresh"
|
|
success-text="刷新成功"
|
|
animation-duration="500"
|
|
success-duration="2000"
|
|
:disabled="false"
|
|
>
|
|
<h3>hello pull-refresh</h3>
|
|
</tiny-pull-refresh>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="jsx">
|
|
import { PullRefresh } from '@opentiny/vue'
|
|
|
|
export default {
|
|
components: {
|
|
TinyPullRefresh: PullRefresh
|
|
},
|
|
data() {
|
|
return {
|
|
isLoading: false
|
|
}
|
|
},
|
|
methods: {
|
|
onRefresh() {
|
|
setTimeout(() => {
|
|
this.isLoading = false
|
|
}, 1000)
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.page__hd {
|
|
padding: 40px;
|
|
}
|
|
.page__title {
|
|
font-weight: 400;
|
|
font-size: 21px;
|
|
text-align: left;
|
|
}
|
|
.page__desc {
|
|
margin-top: 5px;
|
|
color: #888;
|
|
font-size: 14px;
|
|
text-align: left;
|
|
}
|
|
</style>
|