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

16 lines
400 B
JavaScript
Raw Normal View History

2018-01-29 10:57:20 +00:00
import Dropdown from './dropdown'
import DropdownButton from './dropdown-button'
2018-07-29 11:33:02 +00:00
export { DropdownProps } from './dropdown'
2018-01-29 10:57:20 +00: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 10:57:20 +00:00
export default Dropdown