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.
17 lines
383 B
17 lines
383 B
import { App } from 'vue';
|
|
import Button from './button';
|
|
import ButtonGroup from './button-group';
|
|
|
|
Button.Group = ButtonGroup;
|
|
|
|
/* istanbul ignore next */
|
|
Button.install = function(app: App) {
|
|
app.component(Button.name, Button);
|
|
app.component(ButtonGroup.name, ButtonGroup);
|
|
return app;
|
|
};
|
|
|
|
export default Button as typeof Button & {
|
|
readonly Group: typeof ButtonGroup;
|
|
};
|