mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
139 lines
3.6 KiB
Markdown
139 lines
3.6 KiB
Markdown
# Popup
|
||
|
||
### Install
|
||
|
||
```js
|
||
import Vue from 'vue';
|
||
import { Popup } from 'vant';
|
||
|
||
Vue.use(Popup);
|
||
```
|
||
|
||
## Usage
|
||
|
||
### Basic Usage
|
||
|
||
```html
|
||
<van-cell is-link @click="showPopup">Show Popup</van-cell>
|
||
<van-popup v-model:show="show">Content</van-popup>
|
||
```
|
||
|
||
```js
|
||
export default {
|
||
data() {
|
||
return {
|
||
show: false,
|
||
};
|
||
},
|
||
|
||
methods: {
|
||
showPopup() {
|
||
this.show = true;
|
||
},
|
||
},
|
||
};
|
||
```
|
||
|
||
### Position
|
||
|
||
Use `position` prop to set popup display position
|
||
|
||
```html
|
||
<van-popup v-model:show="show" position="top" :style="{ height: '30%' }" />
|
||
```
|
||
|
||
### Close Icon
|
||
|
||
```html
|
||
<van-popup
|
||
v-model:show="show"
|
||
closeable
|
||
position="bottom"
|
||
:style="{ height: '30%' }"
|
||
/>
|
||
<!-- Custom Icon -->
|
||
<van-popup
|
||
v-model:show="show"
|
||
closeable
|
||
close-icon="close"
|
||
position="bottom"
|
||
:style="{ height: '30%' }"
|
||
/>
|
||
<!-- Icon Position -->
|
||
<van-popup
|
||
v-model:show="show"
|
||
closeable
|
||
close-icon-position="top-left"
|
||
position="bottom"
|
||
:style="{ height: '30%' }"
|
||
/>
|
||
```
|
||
|
||
### Round Corner
|
||
|
||
```html
|
||
<van-popup v-model:show="show" round position="bottom" :style="{ height: '30%' }" />
|
||
```
|
||
|
||
### Get Container
|
||
|
||
Use `get-container` prop to specify mount location
|
||
|
||
```html
|
||
<!-- mount to body -->
|
||
<van-popup v-model:show="show" get-container="body" />
|
||
|
||
<!-- mount to #app -->
|
||
<van-popup v-model:show="show" get-container="#app" />
|
||
|
||
<!-- Specify the mount location by function -->
|
||
<van-popup v-model:show="show" :get-container="getContainer" />
|
||
```
|
||
|
||
```js
|
||
export default {
|
||
methods: {
|
||
getContainer() {
|
||
return document.querySelector('.my-container');
|
||
},
|
||
},
|
||
};
|
||
```
|
||
|
||
> Tips: The get-container prop cannot be used on the root node
|
||
|
||
## API
|
||
|
||
### Props
|
||
|
||
| Attribute | Description | Type | Default |
|
||
| --- | --- | --- | --- |
|
||
| v-model:show | Whether to show popup | _boolean_ | `false` |
|
||
| overlay | Whether to show overlay | _boolean_ | `true` |
|
||
| position | Can be set to `top` `bottom` `right` `left` | _string_ | `center` |
|
||
| overlay-class | Custom overlay class | _string_ | - |
|
||
| overlay-style | Custom overlay style | _object_ | - |
|
||
| duration | Transition duration, unit second | _number \| string_ | `0.3` |
|
||
| round `v2.0.7` | Whether to show round corner | _boolean_ | `false` |
|
||
| lock-scroll | Whether to lock background scroll | _boolean_ | `true` |
|
||
| lazy-render | Whether to lazy render util appeared | _boolean_ | `true` |
|
||
| close-on-popstate `v2.2.10` | Whether to close when popstate | _boolean_ | `false` |
|
||
| close-on-click-overlay | Whether to close when click overlay | _boolean_ | `true` |
|
||
| closeable `v2.2.0` | Whether to show close icon | _boolean_ | `false` |
|
||
| close-icon `v2.2.0` | Close icon name | _string_ | `cross` |
|
||
| close-icon-position `v2.2.2` | Close Icon Position,can be set to `top-left` `bottom-left` `bottom-right` | _string_ | `top-right` |
|
||
| transition | Transition, equivalent to `name` prop of [transtion](https://vuejs.org/v2/api/#transition) | _string_ | - |
|
||
| get-container | Return the mount node for Popup | _string \| () => Element_ | - |
|
||
| safe-area-inset-bottom `v2.2.1` | Whether to enable bottom safe area adaptation | _boolean_ | `false` |
|
||
|
||
### Events
|
||
|
||
| Event | Description | Arguments |
|
||
| ------------- | ---------------------------- | -------------- |
|
||
| click | Triggered when click Popup | _event: Event_ |
|
||
| open | Triggered when open Popup | - |
|
||
| close | Triggered when close Popup | - |
|
||
| opened | Triggered when opened Popup | - |
|
||
| closed | Triggered when closed Popup | - |
|
||
| click-overlay | Triggered when click overlay | - |
|