2018-12-25 13:14:36 +08:00

37 lines
682 B
JavaScript

import { VantComponent } from '../common/component';
VantComponent({
props: {
info: null,
icon: String,
dot: Boolean
},
relation: {
name: 'tabbar',
type: 'ancestor'
},
data: {
active: false
},
methods: {
onClick: function onClick() {
var parent = this.getRelationNodes('../tabbar/index')[0];
if (parent) {
parent.onChange(this);
}
this.$emit('click');
},
setActive: function setActive(_ref) {
var active = _ref.active,
color = _ref.color;
if (this.data.active !== active) {
this.set({
active: active,
color: color
});
}
}
}
});