mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
28 lines
421 B
JavaScript
28 lines
421 B
JavaScript
import { create } from '../common/create';
|
|
|
|
create({
|
|
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 });
|
|
}
|
|
}
|
|
});
|