diff options
author | Bastien Wirtz <bastien.wirtz@gmail.com> | 2021-10-10 09:26:02 +0200 |
---|---|---|
committer | Bastien Wirtz <bastien.wirtz@gmail.com> | 2021-10-10 09:26:02 +0200 |
commit | 0a3be103dc02182af7cd5e92fdd6130e3198e1a7 (patch) | |
tree | 2808f1b15a98ce197e8a443a2a538866ca7e3c54 /src/components/Service.vue | |
parent | a25e1b1a70649f4a0341056cca0669d4b7d78fb5 (diff) | |
download | homer-0a3be103dc02182af7cd5e92fdd6130e3198e1a7.tar.gz homer-0a3be103dc02182af7cd5e92fdd6130e3198e1a7.tar.zst homer-0a3be103dc02182af7cd5e92fdd6130e3198e1a7.zip |
Factorize fetch options
Diffstat (limited to 'src/components/Service.vue')
-rw-r--r-- | src/components/Service.vue | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/Service.vue b/src/components/Service.vue index 39a9ac4..25b86d5 100644 --- a/src/components/Service.vue +++ b/src/components/Service.vue | |||
@@ -1,5 +1,5 @@ | |||
1 | <template> | 1 | <template> |
2 | <component v-bind:is="component" :item="item"></component> | 2 | <component v-bind:is="component" :item="item" :proxy="proxy"></component> |
3 | </template> | 3 | </template> |
4 | 4 | ||
5 | <script> | 5 | <script> |
@@ -9,6 +9,7 @@ export default { | |||
9 | name: "Service", | 9 | name: "Service", |
10 | props: { | 10 | props: { |
11 | item: Object, | 11 | item: Object, |
12 | proxy: Object, | ||
12 | }, | 13 | }, |
13 | computed: { | 14 | computed: { |
14 | component() { | 15 | component() { |