2019-11-19 12:06:21 +08:00

25 lines
547 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var component_1 = require("../common/component");
component_1.VantComponent({
relation: {
name: 'index-bar',
type: 'ancestor',
linked: function (target) {
this.parent = target;
},
unlinked: function () {
this.parent = null;
}
},
props: {
useSlot: Boolean,
index: null
},
data: {
active: false,
wrapperStyle: '',
anchorStyle: ''
}
});