mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
24 lines
485 B
JavaScript
24 lines
485 B
JavaScript
export const basic = Behavior({
|
|
options: {
|
|
multipleSlots: true,
|
|
addGlobalClass: true
|
|
},
|
|
|
|
methods: {
|
|
$emit() {
|
|
this.triggerEvent.apply(this, arguments);
|
|
},
|
|
|
|
getRect(selector, all) {
|
|
return new Promise((resolve, reject) => {
|
|
wx.createSelectorQuery()
|
|
.in(this)[all ? 'selectAll' : 'select'](selector)
|
|
.boundingClientRect(rect => {
|
|
rect && resolve(rect);
|
|
})
|
|
.exec();
|
|
});
|
|
}
|
|
}
|
|
});
|