mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
37 lines
586 B
TypeScript
37 lines
586 B
TypeScript
import { VantComponent } from '../common/component';
|
|
|
|
VantComponent({
|
|
relations: {
|
|
'../tabs/index': {
|
|
type: 'ancestor'
|
|
}
|
|
},
|
|
|
|
props: {
|
|
title: String,
|
|
disabled: Boolean
|
|
},
|
|
|
|
data: {
|
|
inited: false,
|
|
active: false
|
|
},
|
|
|
|
watch: {
|
|
disabled() {
|
|
const parent = this.getRelationNodes('../tabs/index')[0];
|
|
if (parent) {
|
|
parent.updateTabs();
|
|
}
|
|
},
|
|
|
|
title() {
|
|
const parent = this.getRelationNodes('../tabs/index')[0];
|
|
if (parent) {
|
|
parent.setLine();
|
|
parent.updateTabs();
|
|
}
|
|
}
|
|
}
|
|
});
|