mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
37 lines
762 B
JavaScript
37 lines
762 B
JavaScript
export const behavior = Behavior({
|
|
created() {
|
|
if (!this.$options) {
|
|
return;
|
|
}
|
|
|
|
const cache = {};
|
|
const { setData } = this;
|
|
const { computed } = this.$options();
|
|
const keys = Object.keys(computed);
|
|
|
|
const calcComputed = () => {
|
|
const needUpdate = {};
|
|
keys.forEach(key => {
|
|
const value = computed[key].call(this);
|
|
|
|
if (cache[key] !== value) {
|
|
cache[key] = needUpdate[key] = value;
|
|
}
|
|
});
|
|
|
|
return needUpdate;
|
|
};
|
|
|
|
Object.defineProperty(this, 'setData', { writable: true });
|
|
|
|
this.setData = (data, callback) => {
|
|
data && setData.call(this, data, callback);
|
|
setData.call(this, calcComputed());
|
|
};
|
|
},
|
|
|
|
attached() {
|
|
this.setData();
|
|
}
|
|
});
|