mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
63 lines
12 KiB
JavaScript
63 lines
12 KiB
JavaScript
import{o as s,a,y as n}from"./vue-libs.b44bc779.js";const e={class:"van-doc-markdown-body"},o=n(`<h1>Popup</h1><div class="van-doc-card"><h3 id="intro" tabindex="-1">Intro</h3><p>Used to display pop-up windows, information prompts, etc., and supports multiple pop-up layers to display.</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_">Popup</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_">Popup</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><pre><code class="language-html"><span class="hljs-tag"><<span class="hljs-name">van-cell</span> <span class="hljs-attr">is-link</span> @<span class="hljs-attr">click</span>=<span class="hljs-string">"showPopup"</span>></span>Show Popup<span class="hljs-tag"></<span class="hljs-name">van-cell</span>></span>
|
|
<span class="hljs-tag"><<span class="hljs-name">van-popup</span> <span class="hljs-attr">v-model:show</span>=<span class="hljs-string">"show"</span>></span>Content<span class="hljs-tag"></<span class="hljs-name">van-popup</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">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> show = <span class="hljs-title function_">ref</span>(<span class="hljs-literal">false</span>);
|
|
<span class="hljs-keyword">const</span> <span class="hljs-title function_">showPopup</span> = (<span class="hljs-params"></span>) => {
|
|
show.<span class="hljs-property">value</span> = <span class="hljs-literal">true</span>;
|
|
};
|
|
<span class="hljs-keyword">return</span> {
|
|
show,
|
|
showPopup,
|
|
};
|
|
},
|
|
};
|
|
</code></pre></div><div class="van-doc-card"><h3 id="position" tabindex="-1">Position</h3><p>Use <code>position</code> prop to set popup display position.</p><pre><code class="language-html"><span class="hljs-tag"><<span class="hljs-name">van-popup</span> <span class="hljs-attr">v-model:show</span>=<span class="hljs-string">"show"</span> <span class="hljs-attr">position</span>=<span class="hljs-string">"top"</span> <span class="hljs-attr">:style</span>=<span class="hljs-string">"{ height: '30%' }"</span> /></span>
|
|
</code></pre></div><div class="van-doc-card"><h3 id="close-icon" tabindex="-1">Close Icon</h3><pre><code class="language-html"><span class="hljs-tag"><<span class="hljs-name">van-popup</span>
|
|
<span class="hljs-attr">v-model:show</span>=<span class="hljs-string">"show"</span>
|
|
<span class="hljs-attr">closeable</span>
|
|
<span class="hljs-attr">position</span>=<span class="hljs-string">"bottom"</span>
|
|
<span class="hljs-attr">:style</span>=<span class="hljs-string">"{ height: '30%' }"</span>
|
|
/></span>
|
|
<span class="hljs-comment"><!-- Custom Icon --></span>
|
|
<span class="hljs-tag"><<span class="hljs-name">van-popup</span>
|
|
<span class="hljs-attr">v-model:show</span>=<span class="hljs-string">"show"</span>
|
|
<span class="hljs-attr">closeable</span>
|
|
<span class="hljs-attr">close-icon</span>=<span class="hljs-string">"close"</span>
|
|
<span class="hljs-attr">position</span>=<span class="hljs-string">"bottom"</span>
|
|
<span class="hljs-attr">:style</span>=<span class="hljs-string">"{ height: '30%' }"</span>
|
|
/></span>
|
|
<span class="hljs-comment"><!-- Icon Position --></span>
|
|
<span class="hljs-tag"><<span class="hljs-name">van-popup</span>
|
|
<span class="hljs-attr">v-model:show</span>=<span class="hljs-string">"show"</span>
|
|
<span class="hljs-attr">closeable</span>
|
|
<span class="hljs-attr">close-icon-position</span>=<span class="hljs-string">"top-left"</span>
|
|
<span class="hljs-attr">position</span>=<span class="hljs-string">"bottom"</span>
|
|
<span class="hljs-attr">:style</span>=<span class="hljs-string">"{ height: '30%' }"</span>
|
|
/></span>
|
|
</code></pre></div><div class="van-doc-card"><h3 id="round-corner" tabindex="-1">Round Corner</h3><pre><code class="language-html"><span class="hljs-tag"><<span class="hljs-name">van-popup</span>
|
|
<span class="hljs-attr">v-model:show</span>=<span class="hljs-string">"show"</span>
|
|
<span class="hljs-attr">round</span>
|
|
<span class="hljs-attr">position</span>=<span class="hljs-string">"bottom"</span>
|
|
<span class="hljs-attr">:style</span>=<span class="hljs-string">"{ height: '30%' }"</span>
|
|
/></span>
|
|
</code></pre></div><div class="van-doc-card"><h3 id="get-container" tabindex="-1">Get Container</h3><p>Use <code>teleport</code> prop to specify mount location.</p><pre><code class="language-html"><span class="hljs-comment"><!-- teleport to body --></span>
|
|
<span class="hljs-tag"><<span class="hljs-name">van-popup</span> <span class="hljs-attr">v-model:show</span>=<span class="hljs-string">"show"</span> <span class="hljs-attr">teleport</span>=<span class="hljs-string">"body"</span> /></span>
|
|
|
|
<span class="hljs-comment"><!-- teleport to #app --></span>
|
|
<span class="hljs-tag"><<span class="hljs-name">van-popup</span> <span class="hljs-attr">v-model:show</span>=<span class="hljs-string">"show"</span> <span class="hljs-attr">teleport</span>=<span class="hljs-string">"#app"</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:show</td><td>Whether to show popup</td><td><em>boolean</em></td><td><code>false</code></td></tr><tr><td>overlay</td><td>Whether to show overlay</td><td><em>boolean</em></td><td><code>true</code></td></tr><tr><td>position</td><td>Can be set to <code>top</code> <code>bottom</code> <code>right</code> <code>left</code></td><td><em>string</em></td><td><code>center</code></td></tr><tr><td>overlay-class</td><td>Custom overlay class</td><td><em>string | Array | object</em></td><td>-</td></tr><tr><td>overlay-style</td><td>Custom overlay style</td><td><em>object</em></td><td>-</td></tr><tr><td>duration</td><td>Transition duration, unit second</td><td><em>number | string</em></td><td><code>0.3</code></td></tr><tr><td>round</td><td>Whether to show round corner</td><td><em>boolean</em></td><td><code>false</code></td></tr><tr><td>lock-scroll</td><td>Whether to lock background scroll</td><td><em>boolean</em></td><td><code>true</code></td></tr><tr><td>lazy-render</td><td>Whether to lazy render util appeared</td><td><em>boolean</em></td><td><code>true</code></td></tr><tr><td>close-on-popstate</td><td>Whether to close when popstate</td><td><em>boolean</em></td><td><code>false</code></td></tr><tr><td>close-on-click-overlay</td><td>Whether to close when overlay is clicked</td><td><em>boolean</em></td><td><code>true</code></td></tr><tr><td>closeable</td><td>Whether to show close icon</td><td><em>boolean</em></td><td><code>false</code></td></tr><tr><td>close-icon</td><td>Close icon name</td><td><em>string</em></td><td><code>cross</code></td></tr><tr><td>close-icon-position</td><td>Close Icon Position, can be set to <code>top-left</code> <code>bottom-left</code> <code>bottom-right</code></td><td><em>string</em></td><td><code>top-right</code></td></tr><tr><td>before-close <code>v3.1.4</code></td><td>Callback function before close</td><td><em>(action: string) => boolean | Promise<boolean></em></td><td>-</td></tr><tr><td>icon-prefix <code>v3.0.18</code></td><td>Icon className prefix</td><td><em>string</em></td><td><code>van-icon</code></td></tr><tr><td>transition</td><td>Transition, equivalent to <code>name</code> prop of <a href="https://v3.vuejs.org/api/built-in-components.html#transition" target="_blank">transition</a></td><td><em>string</em></td><td>-</td></tr><tr><td>transition-appear</td><td>Whether to apply transition on initial render</td><td><em>boolean</em></td><td><code>false</code></td></tr><tr><td>teleport</td><td>Specifies a target element where Popup will be mounted</td><td><em>string | Element</em></td><td>-</td></tr><tr><td>safe-area-inset-top</td><td>Whether to enable top safe area adaptation</td><td><em>boolean</em></td><td><code>false</code></td></tr><tr><td>safe-area-inset-bottom</td><td>Whether to enable bottom safe area adaptation</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>Arguments</th></tr></thead><tbody><tr><td>click</td><td>Emitted when Popup is clicked</td><td><em>event: MouseEvent</em></td></tr><tr><td>click-overlay</td><td>Emitted when overlay is clicked</td><td><em>event: MouseEvent</em></td></tr><tr><td>click-close-icon</td><td>Emitted when close icon is clicked</td><td><em>event: MouseEvent</em></td></tr><tr><td>open</td><td>Emitted when opening Popup</td><td>-</td></tr><tr><td>close</td><td>Emitted when closing Popup</td><td>-</td></tr><tr><td>opened</td><td>Emitted when Popup is opened</td><td>-</td></tr><tr><td>closed</td><td>Emitted when Popup is closed</td><td>-</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></tr></thead><tbody><tr><td>default</td><td>Content of Popup</td></tr><tr><td>overlay-content <code>v3.0.18</code></td><td>Content of Popup overlay</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_">PopupProps</span>,
|
|
<span class="hljs-title class_">PopupPosition</span>,
|
|
<span class="hljs-title class_">PopupInstance</span>,
|
|
<span class="hljs-title class_">PopupCloseIconPosition</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-popup-background-color</td><td><em>var(--van-background-color-light)</em></td><td>-</td></tr><tr><td>--van-popup-transition</td><td><em>transform var(--van-animation-duration-base)</em></td><td>-</td></tr><tr><td>--van-popup-round-border-radius</td><td><em>16px</em></td><td>-</td></tr><tr><td>--van-popup-close-icon-size</td><td><em>22px</em></td><td>-</td></tr><tr><td>--van-popup-close-icon-color</td><td><em>var(--van-gray-5)</em></td><td>-</td></tr><tr><td>--van-popup-close-icon-margin</td><td><em>16px</em></td><td>-</td></tr><tr><td>--van-popup-close-icon-z-index</td><td><em>1</em></td><td>-</td></tr></tbody></table></div>`,16),d=[o],h={__name:"README",setup(l,{expose:t}){return t({frontmatter:{}}),(c,r)=>(s(),a("div",e,d))}};export{h as default};
|