mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 17:31:02 +08:00
b01a6f4e81
* feat: Feature/datepicker && repeat-click directive (#288) * style: fix lint * test: fix local test * test: update test * fix: update api to disabledHours * chore: update * chore: fix lint
11 lines
256 B
TypeScript
11 lines
256 B
TypeScript
import { App } from 'vue'
|
|
import Button from './src/button.vue'
|
|
import ButtonGroup from './src/button-group.vue'
|
|
|
|
export default (app: App): void => {
|
|
app.component(Button.name, Button)
|
|
app.component(ButtonGroup.name, ButtonGroup)
|
|
}
|
|
|
|
export { Button }
|