2019-09-09 20:41:23 +08:00

38 lines
617 B
TypeScript

import { VantComponent } from '../common/component';
VantComponent({
relation: {
type: 'ancestor',
name: 'sidebar',
linked(target) {
this.parent = target;
}
},
props: {
info: null,
title: String
},
methods: {
onClick() {
const { parent } = this;
if (!parent) {
return;
}
const index = parent.items.indexOf(this);
parent.setActive(index).then(() => {
this.$emit('click', index);
parent.$emit('change', index);
});
},
setActive(active: boolean) {
return this.setData({ active });
}
}
});