The QPullToRefresh is a component that allows the user to pull down in order to refresh page content (or retrieve the newest content).
Usage
Basic
WARNING
In your @refresh
function, don’t forget to call the passed in done()
function when you have finished loading more data.
To refresh, pull down (with mouse or through finger touch) on the content below when the inner scroll position is the top.
Custom icon
Custom coloring
Tips
Scrolling container
Please read here about how Quasar determines the container to attach scrolling events to.
- If using a QLayout, then it’s recommended that you put QPullToRefresh as direct child of QPage and wrap your page content with it.
- If you change the parent of this component, don’t forget to call
updateScrollTarget()
on the QPullToRefresh Vue reference. - QPullToRefresh also allows text selection, so if your content also has images, you might want to add
draggable="false"
to them, otherwise the native browser behavior might interfere in a negative way.