mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
27 lines
798 B
JavaScript
27 lines
798 B
JavaScript
export const basic = Behavior({
|
|
methods: {
|
|
$emit(name, detail, options) {
|
|
this.triggerEvent(name, detail, options);
|
|
},
|
|
set(data) {
|
|
this.setData(data);
|
|
return new Promise((resolve) => wx.nextTick(resolve));
|
|
},
|
|
// high performance setData
|
|
setView(data, callback) {
|
|
const target = {};
|
|
let hasChange = false;
|
|
Object.keys(data).forEach((key) => {
|
|
if (data[key] !== this.data[key]) {
|
|
target[key] = data[key];
|
|
hasChange = true;
|
|
}
|
|
});
|
|
if (hasChange) {
|
|
return this.setData(target, callback);
|
|
}
|
|
return callback && callback();
|
|
},
|
|
},
|
|
});
|