mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-06-21 20:09:15 +08:00
776 B
776 B
Overlay
Install
import { Overlay } from 'vant';
Vue.use(Overlay);
Usage
Basic Usage
<van-button
type="primary"
text="Show Overlay"
@click="show = true"
/>
<van-overlay
:show="show"
@click="show = false"
/>
export default {
data() {
return {
show: false
}
}
},
API
Props
Attribute | Description | Type | Default |
---|---|---|---|
show | Whether to show overlay | boolean |
false |
z-index | z-index | `number | string` |
duration | Animation duration | `number | string` |
class-name | ClassName | string |
- |
Events
Event | Description | Arguments |
---|---|---|
click | Triggered when clicked | event: Event |