/*! For license information please see 3101.7fca4006.js.LICENSE.txt */ (self.webpackChunk=self.webpackChunk||[]).push([["3101"],{37317:function(s,n,a){"use strict";a.r(n);var t=a("80681");let e=["innerHTML"];n.default={setup:()=>({html:""}),render:()=>((0,t.wg)(),(0,t.iD)("div",{class:"van-doc-markdown-body",innerHTML:'
Create a mask layer to emphasize specific page elements and prevent users from performing other operations.
\nRegister component globally via app.use
, refer to Component Registration for more registration ways.
import { createApp } from 'vue';\nimport { Overlay } from 'vant';\n\nconst app = createApp();\napp.use(Overlay);\n
\n<van-button type="primary" text="Show Overlay" @click="show = true" />\n<van-overlay :show="show" @click="show = false" />\n
\nimport { ref } from 'vue';\n\nexport default {\n setup() {\n const show = ref(false);\n return { show };\n },\n};\n
\n<van-overlay :show="show" @click="show = false">\n <div class="wrapper" @click.stop>\n <div class="block" />\n </div>\n</van-overlay>\n\n<style>\n .wrapper {\n display: flex;\n align-items: center;\n justify-content: center;\n height: 100%;\n }\n\n .block {\n width: 120px;\n height: 120px;\n background-color: #fff;\n }\n</style>\n
\nThe default z-index level of the Overlay component is 1
. You can set its z-index level using the z-index
prop.
<van-overlay z-index="100" />\n
\nAttribute | \nDescription | \nType | \nDefault | \n
---|---|---|---|
show | \nWhether to show overlay | \nboolean | \nfalse | \n
z-index | \nz-index | \nnumber | string | \n1 | \n
duration | \nAnimation duration | \nnumber | string | \n0.3 | \n
class-name | \nClassName | \nstring | \n- | \n
custom-class | \nCustom style | \nobject | \n- | \n
lock-scroll | \nWhether to lock background scroll | \nboolean | \ntrue | \n
lazy-render | \nWhether to lazy render util appeared | \nboolean | \ntrue | \n
Event | \nDescription | \nArguments | \n
---|---|---|
click | \nEmitted when component is clicked | \nevent: MouseEvent | \n
Name | \nDescription | \n
---|---|
default | \nDefault slot | \n
The component exports the following type definitions:
\nimport type { OverlayProps } from 'vant';\n
\nThe component provides the following CSS variables, which can be used to customize styles. Please refer to ConfigProvider component.
\nName | \nDefault Value | \nDescription | \n
---|---|---|
--van-overlay-z-index | \n1 | \n- | \n
--van-overlay-background | \nrgba(0, 0, 0, 0.7) | \n- | \n