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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
var CancelToken = axios.CancelToken;
var source = CancelToken.source();
Vue.component('fetch-data', {
props: {
url: {
type: String,
required: true
},
method: {
type: String,
default: 'GET'
},
params: {
type: Object,
default: {}
},
body: {
type: Object,
default: {}
}
},
data() {
return {
loading: false,
response: null,
error: null
};
},
watch: {
url() {
this.handleRequest();
},
params: {
handler: this.handleRequest,
deep: true
},
body: {
handler: this.handleRequest,
deep: true
}
},
methods: {
handleRequest() {
source.cancel();
this.loading = true;
axios({
url: this.url,
method: this.method.toUpperCase(),
params: this.params,
data: this.body,
cancelToken: source.token
})
.then(({ data }) => {
this.response = data;
})
.catch(error => {
this.error = error;
})
.finally(() => {
this.loading = false;
});
}
},
created() {
this.handleRequest();
},
render() {
if (this.loading) {
return this.$scopedSlots.default({
loading: true,
response: null,
error: null
});
}
return this.$scopedSlots.default({
loading: false,
response: this.response,
error: this.error
});
}
});
|