mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
37 lines
507 B
JavaScript
37 lines
507 B
JavaScript
const TABBAR_PATH = '../tabbar/index';
|
|
|
|
Component({
|
|
name: 'tabbar-item',
|
|
|
|
properties: {
|
|
info: null,
|
|
icon: String,
|
|
dot: Boolean
|
|
},
|
|
|
|
options: {
|
|
multipleSlots: true
|
|
},
|
|
|
|
relations: {
|
|
[TABBAR_PATH]: {
|
|
type: 'ancestor'
|
|
}
|
|
},
|
|
|
|
data: {
|
|
active: false,
|
|
count: 0
|
|
},
|
|
|
|
methods: {
|
|
onClick() {
|
|
const parent = this.getRelationNodes(TABBAR_PATH)[0];
|
|
if (parent) {
|
|
parent.onChange(this);
|
|
}
|
|
this.triggerEvent('click');
|
|
}
|
|
}
|
|
});
|