mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 01:11:25 +08:00
6503e55277
* refactor(utils-v2): migrate utils * refactor(utils-v2): migrate utils * refactor(utils-v2): migrate utils * refactor(utils): remove * refactor(utils): rename * refactor(utils): move EVENT_CODE to constants * refactor: remove generic
12 lines
331 B
TypeScript
12 lines
331 B
TypeScript
import { withInstall, withNoopInstall } from '@element-plus/utils'
|
|
import Button from './src/button.vue'
|
|
import ButtonGroup from './src/button-group.vue'
|
|
|
|
export const ElButton = withInstall(Button, {
|
|
ButtonGroup,
|
|
})
|
|
export const ElButtonGroup = withNoopInstall(ButtonGroup)
|
|
export default ElButton
|
|
|
|
export * from './src/button'
|