mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
32 lines
447 B
JavaScript
32 lines
447 B
JavaScript
const TABS_PATH = '../tabs/index';
|
|
|
|
Component({
|
|
options: {
|
|
addGlobalClass: true
|
|
},
|
|
|
|
properties: {
|
|
disabled: Boolean,
|
|
title: {
|
|
type: String,
|
|
observer() {
|
|
const parent = this.getRelationNodes(TABS_PATH)[0];
|
|
if (parent) {
|
|
parent.setLine();
|
|
}
|
|
}
|
|
}
|
|
},
|
|
|
|
relations: {
|
|
[TABS_PATH]: {
|
|
type: 'ancestor'
|
|
}
|
|
},
|
|
|
|
data: {
|
|
inited: false,
|
|
active: false
|
|
}
|
|
});
|