mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
24 lines
377 B
JavaScript
24 lines
377 B
JavaScript
Component({
|
|
properties: {
|
|
show: {
|
|
type: Boolean,
|
|
value: false
|
|
},
|
|
overlay: {
|
|
type: Boolean,
|
|
value: true
|
|
},
|
|
// 内容从哪个方向出,可选 center top bottom left right
|
|
type: {
|
|
type: String,
|
|
value: 'center'
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
handleMaskClick() {
|
|
this.triggerEvent('clickmask', {});
|
|
}
|
|
}
|
|
});
|