You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
886 B
36 lines
886 B
|
|
import PropTypes from '../_util/vue-types'
|
|
import animation from '../_util/openAnimation'
|
|
import { getOptionProps } from '../_util/props-util'
|
|
import RcCollapse from './src'
|
|
import { collapseProps } from './src/commonProps'
|
|
|
|
export default {
|
|
model: {
|
|
prop: 'activeKey',
|
|
event: 'change',
|
|
},
|
|
props: {
|
|
...collapseProps,
|
|
bordered: PropTypes.bool.def(true),
|
|
openAnimation: PropTypes.any.def(animation),
|
|
change: PropTypes.func.def(() => {}),
|
|
accordion: PropTypes.bool,
|
|
},
|
|
render () {
|
|
const { prefixCls, bordered, $listeners } = this
|
|
const collapseClassName = {
|
|
[`${prefixCls}-borderless`]: !bordered,
|
|
}
|
|
const rcCollapeProps = {
|
|
props: {
|
|
...getOptionProps(this),
|
|
},
|
|
class: collapseClassName,
|
|
on: $listeners,
|
|
}
|
|
return <RcCollapse {...rcCollapeProps}>{this.$slots.default}</RcCollapse>
|
|
},
|
|
}
|
|
|