mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
34 lines
507 B
JavaScript
34 lines
507 B
JavaScript
const BADGE_GROUP_PATH = '../badge-group/index';
|
|
|
|
Component({
|
|
options: {
|
|
addGlobalClass: true
|
|
},
|
|
|
|
externalClasses: ['custom-class'],
|
|
|
|
relations: {
|
|
[BADGE_GROUP_PATH]: {
|
|
type: 'ancestor'
|
|
}
|
|
},
|
|
|
|
properties: {
|
|
info: Number,
|
|
title: String
|
|
},
|
|
|
|
methods: {
|
|
onClick() {
|
|
const group = this.getRelationNodes(BADGE_GROUP_PATH)[0];
|
|
if (group) {
|
|
group.setActive(this);
|
|
}
|
|
},
|
|
|
|
setActive(active) {
|
|
this.setData({ active });
|
|
}
|
|
}
|
|
});
|