mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
46 lines
1.0 KiB
JavaScript
46 lines
1.0 KiB
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var component_1 = require("../common/component");
|
|
component_1.VantComponent({
|
|
relation: {
|
|
name: 'tabs',
|
|
type: 'ancestor'
|
|
},
|
|
props: {
|
|
dot: Boolean,
|
|
info: null,
|
|
title: String,
|
|
disabled: Boolean,
|
|
titleStyle: String,
|
|
name: {
|
|
type: [Number, String],
|
|
value: '',
|
|
observer: 'setComputedName'
|
|
}
|
|
},
|
|
data: {
|
|
width: null,
|
|
inited: false,
|
|
active: false,
|
|
animated: false
|
|
},
|
|
watch: {
|
|
title: 'update',
|
|
disabled: 'update',
|
|
dot: 'update',
|
|
info: 'update',
|
|
titleStyle: 'update'
|
|
},
|
|
methods: {
|
|
setComputedName: function () {
|
|
this.computedName = this.data.name || this.index;
|
|
},
|
|
update: function () {
|
|
var parent = this.getRelationNodes('../tabs/index')[0];
|
|
if (parent) {
|
|
parent.updateTabs();
|
|
}
|
|
}
|
|
}
|
|
});
|