ant-design-vue/components/upload/index.jsx

15 lines
337 B
Vue
Raw Normal View History

2019-01-12 03:33:27 +00:00
import Upload from './Upload';
import Dragger from './Dragger';
2018-04-13 08:19:50 +00:00
2019-01-12 03:33:27 +00:00
export { UploadProps, UploadListProps, UploadChangeParam } from './interface';
2018-04-13 08:19:50 +00:00
2019-01-12 03:33:27 +00:00
Upload.Dragger = Dragger;
/* istanbul ignore next */
2020-06-25 14:21:23 +00:00
Upload.install = function(app) {
app.component(Upload.name, Upload);
app.component(Dragger.name, Dragger);
2019-01-12 03:33:27 +00:00
};
2019-01-12 03:33:27 +00:00
export default Upload;