UNPKG

349 BJavaScriptView Raw
1import Upload from './Upload';
2import Dragger from './Dragger';
3export { UploadProps, UploadListProps, UploadChangeParam } from './interface';
4Upload.Dragger = Dragger;
5/* istanbul ignore next */
6
7Upload.install = function (app) {
8 app.component(Upload.name, Upload);
9 app.component(Dragger.name, Dragger);
10 return app;
11};
12
13export default Upload;
\No newline at end of file