mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
73 lines
11 KiB
JavaScript
73 lines
11 KiB
JavaScript
import{o as a,a as t,y as n}from"./vue-libs.b44bc779.js";const e={class:"van-doc-markdown-body"},l=n(`<h1>PullRefresh</h1><div class="van-doc-card"><h3 id="intro" tabindex="-1">Intro</h3><p>Used to provide interactive operations for pull-down refresh.</p></div><div class="van-doc-card"><h3 id="install" tabindex="-1">Install</h3><p>Register component globally via <code>app.use</code>, refer to <a href="#/en-US/advanced-usage#zu-jian-zhu-ce" target="_blank">Component Registration</a> for more registration ways.</p><pre><code class="language-js"><span class="hljs-keyword">import</span> { createApp } <span class="hljs-keyword">from</span> <span class="hljs-string">'vue'</span>;
|
|
<span class="hljs-keyword">import</span> { <span class="hljs-title class_">PullRefresh</span> } <span class="hljs-keyword">from</span> <span class="hljs-string">'vant'</span>;
|
|
|
|
<span class="hljs-keyword">const</span> app = <span class="hljs-title function_">createApp</span>();
|
|
app.<span class="hljs-title function_">use</span>(<span class="hljs-title class_">PullRefresh</span>);
|
|
</code></pre></div><h2 id="usage" tabindex="-1">Usage</h2><div class="van-doc-card"><h3 id="basic-usage" tabindex="-1">Basic Usage</h3><p>The <code>refresh</code> event will be Emitted when pull refresh, you should set <code>v-model</code> to <code>false</code> to reset loading status after process refresh event.</p><pre><code class="language-html"><span class="hljs-tag"><<span class="hljs-name">van-pull-refresh</span> <span class="hljs-attr">v-model</span>=<span class="hljs-string">"loading"</span> @<span class="hljs-attr">refresh</span>=<span class="hljs-string">"onRefresh"</span>></span>
|
|
<span class="hljs-tag"><<span class="hljs-name">p</span>></span>Refresh Count: {{ count }}<span class="hljs-tag"></<span class="hljs-name">p</span>></span>
|
|
<span class="hljs-tag"></<span class="hljs-name">van-pull-refresh</span>></span>
|
|
</code></pre><pre><code class="language-js"><span class="hljs-keyword">import</span> { ref } <span class="hljs-keyword">from</span> <span class="hljs-string">'vue'</span>;
|
|
<span class="hljs-keyword">import</span> { <span class="hljs-title class_">Toast</span> } <span class="hljs-keyword">from</span> <span class="hljs-string">'vant'</span>;
|
|
|
|
<span class="hljs-keyword">export</span> <span class="hljs-keyword">default</span> {
|
|
<span class="hljs-title function_">setup</span>(<span class="hljs-params"></span>) {
|
|
<span class="hljs-keyword">const</span> count = <span class="hljs-title function_">ref</span>(<span class="hljs-number">0</span>);
|
|
<span class="hljs-keyword">const</span> loading = <span class="hljs-title function_">ref</span>(<span class="hljs-literal">false</span>);
|
|
<span class="hljs-keyword">const</span> <span class="hljs-title function_">onRefresh</span> = (<span class="hljs-params"></span>) => {
|
|
<span class="hljs-built_in">setTimeout</span>(<span class="hljs-function">() =></span> {
|
|
<span class="hljs-title class_">Toast</span>(<span class="hljs-string">'Refresh Success'</span>);
|
|
loading.<span class="hljs-property">value</span> = <span class="hljs-literal">false</span>;
|
|
count.<span class="hljs-property">value</span>++;
|
|
}, <span class="hljs-number">1000</span>);
|
|
};
|
|
|
|
<span class="hljs-keyword">return</span> {
|
|
count,
|
|
loading,
|
|
onRefresh,
|
|
};
|
|
},
|
|
};
|
|
</code></pre></div><div class="van-doc-card"><h3 id="success-tip" tabindex="-1">Success Tip</h3><p>Use <code>success-text</code> to set the success prompt after the refresh is successful</p><pre><code class="language-html"><span class="hljs-tag"><<span class="hljs-name">van-pull-refresh</span>
|
|
<span class="hljs-attr">v-model</span>=<span class="hljs-string">"isLoading"</span>
|
|
<span class="hljs-attr">success-text</span>=<span class="hljs-string">"Refresh success"</span>
|
|
@<span class="hljs-attr">refresh</span>=<span class="hljs-string">"onRefresh"</span>
|
|
></span>
|
|
<span class="hljs-tag"><<span class="hljs-name">p</span>></span>Refresh Count: {{ count }}<span class="hljs-tag"></<span class="hljs-name">p</span>></span>
|
|
<span class="hljs-tag"></<span class="hljs-name">van-pull-refresh</span>></span>
|
|
</code></pre></div><div class="van-doc-card"><h3 id="custom-tips" tabindex="-1">Custom Tips</h3><p>Use slots to custom tips.</p><pre><code class="language-html"><span class="hljs-tag"><<span class="hljs-name">van-pull-refresh</span> <span class="hljs-attr">v-model</span>=<span class="hljs-string">"isLoading"</span> <span class="hljs-attr">:head-height</span>=<span class="hljs-string">"80"</span> @<span class="hljs-attr">refresh</span>=<span class="hljs-string">"onRefresh"</span>></span>
|
|
<span class="hljs-tag"><<span class="hljs-name">template</span> #<span class="hljs-attr">pulling</span>=<span class="hljs-string">"props"</span>></span>
|
|
<span class="hljs-tag"><<span class="hljs-name">img</span>
|
|
<span class="hljs-attr">class</span>=<span class="hljs-string">"doge"</span>
|
|
<span class="hljs-attr">src</span>=<span class="hljs-string">"https://fastly.jsdelivr.net/npm/@vant/assets/doge.png"</span>
|
|
<span class="hljs-attr">:style</span>=<span class="hljs-string">"{ transform: \`scale(\${props.distance / 80})\` }"</span>
|
|
/></span>
|
|
<span class="hljs-tag"></<span class="hljs-name">template</span>></span>
|
|
|
|
<span class="hljs-tag"><<span class="hljs-name">template</span> #<span class="hljs-attr">loosing</span>></span>
|
|
<span class="hljs-tag"><<span class="hljs-name">img</span>
|
|
<span class="hljs-attr">class</span>=<span class="hljs-string">"doge"</span>
|
|
<span class="hljs-attr">src</span>=<span class="hljs-string">"https://fastly.jsdelivr.net/npm/@vant/assets/doge.png"</span>
|
|
/></span>
|
|
<span class="hljs-tag"></<span class="hljs-name">template</span>></span>
|
|
|
|
<span class="hljs-tag"><<span class="hljs-name">template</span> #<span class="hljs-attr">loading</span>></span>
|
|
<span class="hljs-tag"><<span class="hljs-name">img</span>
|
|
<span class="hljs-attr">class</span>=<span class="hljs-string">"doge"</span>
|
|
<span class="hljs-attr">src</span>=<span class="hljs-string">"https://fastly.jsdelivr.net/npm/@vant/assets/doge-fire.jpeg"</span>
|
|
/></span>
|
|
<span class="hljs-tag"></<span class="hljs-name">template</span>></span>
|
|
<span class="hljs-tag"><<span class="hljs-name">p</span>></span>Refresh Count: {{ count }}<span class="hljs-tag"></<span class="hljs-name">p</span>></span>
|
|
<span class="hljs-tag"></<span class="hljs-name">van-pull-refresh</span>></span>
|
|
|
|
<span class="hljs-tag"><<span class="hljs-name">style</span>></span><span class="language-css">
|
|
<span class="hljs-selector-class">.doge</span> {
|
|
<span class="hljs-attribute">width</span>: <span class="hljs-number">140px</span>;
|
|
<span class="hljs-attribute">height</span>: <span class="hljs-number">72px</span>;
|
|
<span class="hljs-attribute">margin-top</span>: <span class="hljs-number">8px</span>;
|
|
<span class="hljs-attribute">border-radius</span>: <span class="hljs-number">4px</span>;
|
|
}
|
|
</span><span class="hljs-tag"></<span class="hljs-name">style</span>></span>
|
|
</code></pre></div><h2 id="api" tabindex="-1">API</h2><div class="van-doc-card"><h3 id="props" tabindex="-1">Props</h3><table><thead><tr><th>Attribute</th><th>Description</th><th>Type</th><th>Default</th></tr></thead><tbody><tr><td>v-model</td><td>Loading status</td><td><em>boolean</em></td><td>-</td></tr><tr><td>pulling-text</td><td>Text to show when pulling</td><td><em>string</em></td><td><code>Pull to refresh...</code></td></tr><tr><td>loosing-text</td><td>Text to show when loosing</td><td><em>string</em></td><td><code>Loose to refresh...</code></td></tr><tr><td>loading-text</td><td>Text to show when loading</td><td><em>string</em></td><td><code>Loading...</code></td></tr><tr><td>success-text</td><td>Text to show when loading success</td><td><em>string</em></td><td>-</td></tr><tr><td>success-duration</td><td>Success text display duration(ms)</td><td><em>number | string</em></td><td><code>500</code></td></tr><tr><td>animation-duration</td><td>Animation duration</td><td><em>number | string</em></td><td><code>300</code></td></tr><tr><td>head-height</td><td>Height of head</td><td><em>number | string</em></td><td><code>50</code></td></tr><tr><td>pull-distance <code>v3.0.8</code></td><td>The distance to trigger the pull refresh</td><td><em>number | string</em></td><td>same as <code>head-height</code></td></tr><tr><td>disabled</td><td>Whether to disable pull refresh</td><td><em>boolean</em></td><td><code>false</code></td></tr></tbody></table></div><div class="van-doc-card"><h3 id="events" tabindex="-1">Events</h3><table><thead><tr><th>Event</th><th>Description</th><th>Parameters</th></tr></thead><tbody><tr><td>refresh</td><td>Emitted after pulling refresh</td><td>-</td></tr><tr><td>change <code>v3.5.1</code></td><td>Emitted when draging or status changed</td><td><em>{ status: string, distance: number }</em></td></tr></tbody></table></div><div class="van-doc-card"><h3 id="slots" tabindex="-1">Slots</h3><table><thead><tr><th>Name</th><th>Description</th><th>SlotProps</th></tr></thead><tbody><tr><td>default</td><td>Default slot</td><td>-</td></tr><tr><td>normal</td><td>Content of head when at normal status</td><td>-</td></tr><tr><td>pulling</td><td>Content of head when at pulling</td><td><em>{ distance: number }</em></td></tr><tr><td>loosing</td><td>Content of head when at loosing</td><td><em>{ distance: number }</em></td></tr><tr><td>loading</td><td>Content of head when at loading</td><td><em>{ distance: number }</em></td></tr><tr><td>success</td><td>Content of head when succeed</td><td>-</td></tr></tbody></table></div><div class="van-doc-card"><h3 id="types" tabindex="-1">Types</h3><p>The component exports the following type definitions:</p><pre><code class="language-ts"><span class="hljs-keyword">import</span> <span class="hljs-keyword">type</span> { <span class="hljs-title class_">PullRefreshProps</span> } <span class="hljs-keyword">from</span> <span class="hljs-string">'vant'</span>;
|
|
</code></pre></div><h2 id="theming" tabindex="-1">Theming</h2><div class="van-doc-card"><h3 id="css-variables" tabindex="-1">CSS Variables</h3><p>The component provides the following CSS variables, which can be used to customize styles. Please refer to <a href="#/en-US/config-provider" target="_blank">ConfigProvider component</a>.</p><table><thead><tr><th>Name</th><th>Default Value</th><th>Description</th></tr></thead><tbody><tr><td>--van-pull-refresh-head-height</td><td><em>50px</em></td><td>-</td></tr><tr><td>--van-pull-refresh-head-font-size</td><td><em>var(--van-font-size-md)</em></td><td>-</td></tr><tr><td>--van-pull-refresh-head-text-color</td><td><em>var(--van-text-color-2)</em></td><td>-</td></tr><tr><td>--van-pull-refresh-loading-icon-size</td><td><em>16px</em></td><td>-</td></tr></tbody></table></div>`,14),p=[l],i={__name:"README",setup(d,{expose:s}){return s({frontmatter:{}}),(c,o)=>(a(),t("div",e,p))}};export{i as default};
|