mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-04 13:08:48 +08:00
13 lines
276 B
JavaScript
13 lines
276 B
JavaScript
import Button from './button';
|
|
import ButtonGroup from './button-group';
|
|
|
|
Button.Group = ButtonGroup;
|
|
|
|
/* istanbul ignore next */
|
|
Button.install = function(app) {
|
|
app.component(Button.name, Button);
|
|
app.component(ButtonGroup.name, ButtonGroup);
|
|
};
|
|
|
|
export default Button;
|