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