mirror of https://github.com/bastienwirtz/homer
fix eslint unused-vars error in App.vue
parent
30c83641ad
commit
6ba1bcd748
|
@ -86,7 +86,7 @@
|
||||||
{{ group.name }}
|
{{ group.name }}
|
||||||
</h2>
|
</h2>
|
||||||
<Service
|
<Service
|
||||||
v-for="(item, index) in group.items"
|
v-for="(item) in group.items"
|
||||||
:key="`${currentPage}-${group.name}-${item.name}`"
|
:key="`${currentPage}-${group.name}-${item.name}`"
|
||||||
:item="item"
|
:item="item"
|
||||||
:proxy="config.proxy"
|
:proxy="config.proxy"
|
||||||
|
@ -119,7 +119,7 @@
|
||||||
{{ group.name }}
|
{{ group.name }}
|
||||||
</h2>
|
</h2>
|
||||||
<Service
|
<Service
|
||||||
v-for="(item, index) in group.items"
|
v-for="(item) in group.items"
|
||||||
:key="`${currentPage}-${group.name}-${item.name}`"
|
:key="`${currentPage}-${group.name}-${item.name}`"
|
||||||
:item="item"
|
:item="item"
|
||||||
:proxy="config.proxy"
|
:proxy="config.proxy"
|
||||||
|
|
Loading…
Reference in New Issue