2022-03-05 23:09:31 +08:00
|
|
|
import { withInstall } from '@element-plus/utils'
|
|
|
|
import Upload from './src/upload.vue'
|
2024-08-07 12:01:46 +08:00
|
|
|
import type { SFCWithInstall } from '@element-plus/utils'
|
2020-10-29 17:28:26 +08:00
|
|
|
|
2024-08-07 12:01:46 +08:00
|
|
|
export const ElUpload: SFCWithInstall<typeof Upload> = withInstall(Upload)
|
2022-03-05 23:09:31 +08:00
|
|
|
export default ElUpload
|
2021-08-24 13:36:48 +08:00
|
|
|
|
2022-03-05 23:09:31 +08:00
|
|
|
export * from './src/upload'
|
|
|
|
export * from './src/upload-content'
|
|
|
|
export * from './src/upload-list'
|
|
|
|
export * from './src/upload-dragger'
|
2023-03-01 13:59:21 +08:00
|
|
|
export * from './src/constants'
|