Fixed hover

This commit is contained in:
Kamil Klecha
2021-10-18 21:10:47 +02:00
parent b50195994a
commit 304103ff86

View File

@@ -6,8 +6,8 @@
<v-col v-for="(city, i) in cities" :key="i">
<City :city="city" />
</v-col>
<v-hover v-slot="{ hover }">
<v-col>
<v-col>
<v-hover v-slot="{ hover }">
<v-card
tile
outlined
@@ -28,8 +28,8 @@
</v-col>
</v-row>
</v-card>
</v-col>
</v-hover>
</v-hover>
</v-col>
</v-row>
</v-card>
<NewCity v-if="add" @save="addCity($event)" @close="add = false" />