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