mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
36 lines
709 B
JavaScript
36 lines
709 B
JavaScript
import { VantComponent } from '../common/component';
|
|
VantComponent({
|
|
props: {
|
|
info: null,
|
|
icon: String,
|
|
dot: Boolean
|
|
},
|
|
relation: {
|
|
name: 'tabbar',
|
|
type: 'ancestor'
|
|
},
|
|
data: {
|
|
active: false,
|
|
count: 0
|
|
},
|
|
methods: {
|
|
onClick: function onClick() {
|
|
var parent = this.getRelationNodes('../tabbar/index')[0];
|
|
|
|
if (parent) {
|
|
parent.onChange(this);
|
|
}
|
|
|
|
this.$emit('click');
|
|
},
|
|
setActive: function setActive(data) {
|
|
var _this$data = this.data,
|
|
active = _this$data.active,
|
|
count = _this$data.count;
|
|
|
|
if (active !== data.active || count !== data.count) {
|
|
this.setData(data);
|
|
}
|
|
}
|
|
}
|
|
}); |