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