mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
33 lines
608 B
JavaScript
33 lines
608 B
JavaScript
import { use } from '../utils';
|
|
|
|
const [sfc, bem] = use('collapse');
|
|
|
|
export default sfc({
|
|
props: {
|
|
accordion: Boolean,
|
|
value: [String, Number, Array]
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
items: []
|
|
};
|
|
},
|
|
|
|
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(h) {
|
|
return <div class={[bem(), 'van-hairline--top-bottom']}>{this.slots()}</div>;
|
|
}
|
|
});
|