You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
471 B
19 lines
471 B
import type { App } from 'vue';
|
|
import Upload, { LIST_IGNORE } from './Upload';
|
|
import Dragger from './Dragger';
|
|
|
|
export type { UploadProps, UploadListProps, UploadChangeParam, UploadFile } from './interface';
|
|
|
|
/* istanbul ignore next */
|
|
export const UploadDragger = Dragger;
|
|
|
|
export default Object.assign(Upload, {
|
|
Dragger,
|
|
LIST_IGNORE,
|
|
install(app: App) {
|
|
app.component(Upload.name, Upload);
|
|
app.component(Dragger.name, Dragger);
|
|
return app;
|
|
},
|
|
});
|