[improvement] Tabbar: optimize performance (#1362)

This commit is contained in:
neverland 2019-03-01 14:56:07 +08:00 committed by GitHub
parent 01da68bcf9
commit dee02a09a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -35,26 +35,25 @@ VantComponent({
},
data: {
items: [],
currentActive: -1
items: []
},
watch: {
active(active) {
this.set({ currentActive: active });
this.currentActive = active;
this.setActiveItem();
}
},
created() {
this.set({ currentActive: this.data.active });
this.currentActive = this.data.active;
},
methods: {
setActiveItem() {
this.data.items.forEach((item, index) => {
item.setActive({
active: index === this.data.currentActive,
active: index === this.currentActive,
color: this.data.activeColor
});
});
@ -62,9 +61,9 @@ VantComponent({
onChange(child) {
const active = this.data.items.indexOf(child);
if (active !== this.data.currentActive && active !== -1) {
if (active !== this.currentActive && active !== -1) {
this.$emit('change', active);
this.set({ currentActive: active });
this.currentActive = active;
this.setActiveItem();
}
}