1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import Upload from '../index';
export default {
render: function render() {
var h = arguments[0];
var uploaderProps = {
props: {
action: '//jsonplaceholder.typicode.com/posts/',
data: { a: 1, b: 2 },
headers: {
Authorization: 'xxxxxxx'
},
directory: true,
beforeUpload: function beforeUpload(file) {
console.log('beforeUpload', file.name);
}
},
on: {
start: function start(file) {
console.log('start', file.name);
},
success: function success(file) {
console.log('success', file);
},
progress: function progress(step, file) {
console.log('progress', Math.round(step.percent), file.name);
},
error: function error(err) {
console.log('error', err);
}
},
style: { margin: '100px' }
};
return h(
Upload,
uploaderProps,
[h('a', ['\u5F00\u59CB\u4E0A\u4F20'])]
);
}
};