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.
24 lines
478 B
24 lines
478 B
<script>
|
|
import Simple from './simple';
|
|
import Drag from './drag';
|
|
import AsyncAction from './asyncAction';
|
|
import BeforeUpload from './beforeUpload';
|
|
import CustomRequest from './customRequest';
|
|
import DirectoryUpload from './directoryUpload';
|
|
|
|
export default {
|
|
render() {
|
|
return (
|
|
<div>
|
|
<Simple />
|
|
<Drag />
|
|
<AsyncAction />
|
|
<BeforeUpload />
|
|
<CustomRequest />
|
|
<DirectoryUpload />
|
|
</div>
|
|
);
|
|
},
|
|
};
|
|
</script>
|