vant-weapp/dist/tab/index.js
2018-11-26 09:51:15 +08:00

28 lines
474 B
JavaScript

import { VantComponent } from '../common/component';
VantComponent({
relation: {
name: 'tabs',
type: 'ancestor'
},
props: {
title: String,
disabled: Boolean
},
data: {
inited: false,
active: false
},
watch: {
title: 'update',
disabled: 'update'
},
methods: {
update: function update() {
var parent = this.getRelationNodes('../tabs/index')[0];
if (parent) {
parent.updateTabs();
}
}
}
});