aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/components/Service.vue
diff options
context:
space:
mode:
authorRobin Schneider <45321827+robinschneider@users.noreply.github.com>2021-10-10 21:41:23 +0200
committerGitHub <noreply@github.com>2021-10-10 21:41:23 +0200
commit7a4e78e8d0448541e76f6052c45f00b30cdf60e1 (patch)
tree77be480ad42c3e1a64005a1974206dc249273bbb /src/components/Service.vue
parent3faeac7e9fc3601283c58e2d585e00f346250e10 (diff)
parent66a434e7dba49011dd5401e32bb45ab180a73a11 (diff)
downloadhomer-7a4e78e8d0448541e76f6052c45f00b30cdf60e1.tar.gz
homer-7a4e78e8d0448541e76f6052c45f00b30cdf60e1.tar.zst
homer-7a4e78e8d0448541e76f6052c45f00b30cdf60e1.zip
Merge branch 'bastienwirtz:main' into icon-color
Diffstat (limited to 'src/components/Service.vue')
-rw-r--r--src/components/Service.vue3
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() {