mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 17:31:02 +08:00
0327d2d0b2
* feat(utils): add buildProp * chore: disable eslint rule * chore: typescript use strict * refactor(components): refactor button * feat: add comment for buildProp
12 lines
310 B
TypeScript
12 lines
310 B
TypeScript
import { withInstall } from '@element-plus/utils/with-install'
|
|
import Button from './src/button.vue'
|
|
import ButtonGroup from './src/button-group.vue'
|
|
|
|
export const ElButton = withInstall(Button, {
|
|
ButtonGroup,
|
|
})
|
|
export const ElButtonGroup = ButtonGroup
|
|
export default ElButton
|
|
|
|
export * from './src/button'
|