mirror of
https://github.com/element-plus/element-plus.git
synced 2025-08-16 03:53:39 +08:00

* refactor(tokens): remove tokens * Remove tokens/breadcrumb. * refactor(tokens): remove tokens/button * refactor(tokens): remove tokens/carousel * refactor(tokens): removing tokens/checkbox * refactor(tokens): removing tokens/collapse * refactor(tokens): removing tokens/dialog * refactor(tokens): removing tokens/pagination * refactor(tokens): removing tokens/radio * refactor(tokens): removing tokens/row * refactor(tokens): removing tokens/scrollbar * refactor(tokens): removing tokens/slider * refactor(tokens): removing tokens/tabs * refactor(tokens): removing tokens/upload * refactor(tokens): removing tokens/popper * refactor(tokens): removing tokens/tooltip * refactor(tokens): removing tokens/tooltip-v2 * refactor(tokens): removing tokens/date-picker * refactor(project): removing tokens/experimentals * Remove tokens/experimentals * Remove package/tokens * Remove tokens related parts * refactor(project): removing packages/tokens completely * chore: update import statement
19 lines
561 B
TypeScript
19 lines
561 B
TypeScript
import { withInstall, withNoopInstall } from '@element-plus/utils'
|
|
|
|
import Checkbox from './src/checkbox.vue'
|
|
import CheckboxButton from './src/checkbox-button.vue'
|
|
import CheckboxGroup from './src/checkbox-group.vue'
|
|
|
|
export const ElCheckbox = withInstall(Checkbox, {
|
|
CheckboxButton,
|
|
CheckboxGroup,
|
|
})
|
|
export default ElCheckbox
|
|
|
|
export const ElCheckboxButton = withNoopInstall(CheckboxButton)
|
|
export const ElCheckboxGroup = withNoopInstall(CheckboxGroup)
|
|
|
|
export * from './src/checkbox-group'
|
|
export * from './src/checkbox'
|
|
export * from './src/constants'
|