mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
38 lines
802 B
JavaScript
38 lines
802 B
JavaScript
import { createNamespace } from '../utils';
|
|
import { ParentMixin } from '../mixins/relation';
|
|
|
|
const [createComponent, bem] = createNamespace('collapse');
|
|
|
|
export default createComponent({
|
|
mixins: [ParentMixin('vanCollapse')],
|
|
|
|
props: {
|
|
accordion: Boolean,
|
|
value: [String, Number, Array],
|
|
border: {
|
|
type: Boolean,
|
|
default: true
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
switch(name, expanded) {
|
|
if (!this.accordion) {
|
|
name = expanded
|
|
? this.value.concat(name)
|
|
: this.value.filter(activeName => activeName !== name);
|
|
}
|
|
this.$emit('change', name);
|
|
this.$emit('input', name);
|
|
}
|
|
},
|
|
|
|
render() {
|
|
return (
|
|
<div class={[bem(), { 'van-hairline--top-bottom': this.border }]}>
|
|
{this.slots()}
|
|
</div>
|
|
);
|
|
}
|
|
});
|