<refresh>
Summary
WARNING
The <refresh>
Component provide a pulldown-refresh function for some special containers, its usage and attributes are similar to the <loading>
Component.
To be rendered properly, the <refresh>
Component must appear inside the special Component such as <scroller>
、<list>
、<hlist>
、<vlist>
、<waterfall>
.
<scroller>
<refresh>
<text>Refreshing...</text>
</refresh>
<div v-for="num in lists">
<text>{{num}}</text>
</div>
</scroller>
Child Components
Any other components, like the
<text>
and<image>
components, can be put inside the refresh component.<loading-indicator>
: This is a dedicated component which provides a default refresh animation effect, can only be used inside the<refresh>
or the<loading>
components.
<refresh>
<text>Refreshing</text>
<loading-indicator></loading-indicator>
</refresh>
Attributes
- Support all common attributes;
Attribute | Type | Value | Default Value |
---|---|---|---|
display | String | show / hide | show |
display
show
:The refresh animation will be started if a<loading-indicator>
is included in the refresh component.hide
:Collapse the refresh view. It also hides the<loading-indicator>
and stops the loading animation if there's a<loading-indicator>
included in the refresh component.
Note: The visibility of
<refresh>
component can be controlled by display attribute with the value show and hide. Adisplay="show"
should always be paired with adisplay="hide"
statement.
Styles
- Please check out the common styles
Events
refresh
- Triggered when the scroller or list is pulled down.
pullingdown
v0.6.1+
Triggered when the scroller or list is pulled down. The attributes
dy
,pullingDistance
,viewHeight
andtype
are accessible from theevent
object :dy
: The offset between two scroll actionspullingDistance
: The distance of pullingviewHeight
: The height of refreshViewtype
: "pullingdown" constant string type for this event
<refresh @refresh="onrefresh" @pullingdown="onpullingdown" :display="refreshing ? 'show' : 'hide'">
<text>Refreshing ...</text>
<loading-indicator></loading-indicator>
</refresh>
Example
- Complete example goes here