vant-weapp/dist/tab/index.js
2018-09-07 10:32:16 +08:00

28 lines
413 B
JavaScript

import { create } from '../common/create';
create({
props: {
disabled: Boolean,
title: {
type: String,
observer() {
const parent = this.getRelationNodes('../tabs/index')[0];
if (parent) {
parent.setLine();
}
}
}
},
relations: {
'../tabs/index': {
type: 'ancestor'
}
},
data: {
inited: false,
active: false
}
});