mirror of
https://github.com/element-plus/element-plus.git
synced 2024-11-21 01:02:59 +08:00
14 lines
322 B
TypeScript
14 lines
322 B
TypeScript
import Upload from './src/index.vue'
|
|
|
|
import type { App } from 'vue'
|
|
import type { SFCWithInstall } from '@element-plus/utils-v2'
|
|
|
|
Upload.install = (app: App): void => {
|
|
app.component(Upload.name, Upload)
|
|
}
|
|
|
|
const _Upload = Upload as SFCWithInstall<typeof Upload>
|
|
|
|
export default _Upload
|
|
export const ElUpload = _Upload
|