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

17 lines
382 B
Vue
Raw Normal View History

2019-01-12 03:33:27 +00:00
import Upload from './Upload';
import Dragger from './Dragger';
import Base from '../base';
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 */
2019-01-12 03:33:27 +00:00
Upload.install = function(Vue) {
Vue.use(Base);
2019-01-12 03:33:27 +00:00
Vue.component(Upload.name, Upload);
Vue.component(Dragger.name, Dragger);
};
2019-01-12 03:33:27 +00:00
export default Upload;