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.
24 lines
336 B
24 lines
336 B
<template> |
|
<view> |
|
|
|
</view> |
|
</template> |
|
|
|
<script lang="ts" setup> |
|
import { |
|
onPullDownRefresh |
|
} from '@dcloudio/uni-app' |
|
|
|
// 下拉刷新 |
|
onPullDownRefresh(() => { |
|
const timer = setTimeout(() => { |
|
// 关闭刷新动画 |
|
uni.stopPullDownRefresh() |
|
clearTimeout(timer) |
|
}, 500) |
|
}) |
|
</script> |
|
|
|
<style lang="scss"> |
|
|
|
</style> |