Skip to content

Commit 93c7a3b

Browse files
committed
update Firestore.vue
1 parent e260563 commit 93c7a3b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/components/Firestore.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
<div>
33
<v-card>
44
<v-list two-line subheader>
5-
<v-subheader>General</v-subheader>
5+
<v-subheader>Persons</v-subheader>
66
<v-list-tile v-for="(person, index) in Persons" :key="index">
77
<v-list-tile-content>
88
<v-list-tile-title>{{person.name}}</v-list-tile-title>
99
</v-list-tile-content>
1010
<v-list-tile-action>
11-
<v-icon color="white" @click="remove(person['.key'])">delete</v-icon>
11+
<v-icon color="black" @click="remove(person['.key'])">delete</v-icon>
1212
</v-list-tile-action>
1313
</v-list-tile>
1414
</v-list>
@@ -31,7 +31,7 @@
3131

3232
<script>
3333
34-
import Person from "./../models/Person"
34+
import Person from "@/models/Person"
3535
3636
export default {
3737
created () {

0 commit comments

Comments
 (0)