2019-04-24 10:05:04 +08:00

53 lines
1.5 KiB
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var component_1 = require("../common/component");
component_1.VantComponent({
relation: {
name: 'collapse-item',
type: 'descendant',
linked: function (child) {
this.children.push(child);
},
unlinked: function (child) {
this.children = this.children.filter(function (item) { return item !== child; });
}
},
props: {
value: {
type: null,
observer: 'updateExpanded'
},
accordion: {
type: Boolean,
observer: 'updateExpanded'
},
border: {
type: Boolean,
value: true
}
},
beforeCreate: function () {
this.children = [];
},
methods: {
updateExpanded: function () {
this.children.forEach(function (child) {
child.updateExpanded();
});
},
switch: function (name, expanded) {
var _a = this.data, accordion = _a.accordion, value = _a.value;
if (!accordion) {
name = expanded
? (value || []).concat(name)
: (value || []).filter(function (activeName) { return activeName !== name; });
}
else {
name = expanded ? name : '';
}
this.$emit('change', name);
this.$emit('input', name);
}
}
});