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