mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-03 12:37:42 +08:00
15 lines
337 B
Vue
15 lines
337 B
Vue
import Upload from './Upload';
|
|
import Dragger from './Dragger';
|
|
|
|
export { UploadProps, UploadListProps, UploadChangeParam } from './interface';
|
|
|
|
Upload.Dragger = Dragger;
|
|
|
|
/* istanbul ignore next */
|
|
Upload.install = function(app) {
|
|
app.component(Upload.name, Upload);
|
|
app.component(Dragger.name, Dragger);
|
|
};
|
|
|
|
export default Upload;
|