mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
24 lines
516 B
JavaScript
24 lines
516 B
JavaScript
import { VantComponent } from '../common/component';
|
|
VantComponent({
|
|
relations: {
|
|
'../badge-group/index': {
|
|
type: 'ancestor'
|
|
}
|
|
},
|
|
props: {
|
|
info: Number,
|
|
title: String
|
|
},
|
|
methods: {
|
|
onClick() {
|
|
const group = this.getRelationNodes('../badge-group/index')[0];
|
|
if (group) {
|
|
group.setActive(this);
|
|
}
|
|
},
|
|
setActive(active) {
|
|
this.setData({ active });
|
|
}
|
|
}
|
|
});
|