ant-design-vue/components/dropdown/index.js

16 lines
400 B
JavaScript
Raw Normal View History

2018-01-29 18:57:20 +08:00
import Dropdown from './dropdown'
import DropdownButton from './dropdown-button'
2018-07-29 19:33:02 +08:00
export { DropdownProps } from './dropdown'
2018-01-29 18:57:20 +08:00
export { DropdownButtonProps } from './dropdown-button'
Dropdown.Button = DropdownButton
/* istanbul ignore next */
Dropdown.install = function (Vue) {
Vue.component(Dropdown.name, Dropdown)
Vue.component(DropdownButton.name, DropdownButton)
}
2018-01-29 18:57:20 +08:00
export default Dropdown