# Overlay ### Install ```js import Vue from 'vue'; import { Overlay } from 'vant'; Vue.use(Overlay); ``` ## Usage ### Basic Usage ```html ``` ```js export default { data() { return { show: false } } }, ``` ### Embedded Content ```html
``` ## API ### Props | Attribute | Description | Type | Default | | --- | --- | --- | --- | | show | Whether to show overlay | _boolean_ | `false` | | z-index | z-index | _number \| string_ | `1` | | duration | Animation duration | _number \| string_ | `0.3` | | class-name | ClassName | _string_ | - | | custom-class | Custom style | _object_ | - | | lock-scroll `v2.6.2` | Whether to lock background scroll | _boolean_ | `true` | ### Events | Event | Description | Arguments | | ----- | --------------------------------- | -------------- | | click | Emitted when component is clicked | _event: Event_ | ### Slots | Name | Description | | ------- | ------------ | | default | Default slot | ### Less Variables How to use: [Custom Theme](#/en-US/theme). | Name | Default Value | Description | | ------------------------- | -------------------- | ----------- | | @overlay-z-index | `1` | - | | @overlay-background-color | `rgba(0, 0, 0, 0.7)` | - |