We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e260563 commit 93c7a3bCopy full SHA for 93c7a3b
src/components/Firestore.vue
@@ -2,13 +2,13 @@
2
<div>
3
<v-card>
4
<v-list two-line subheader>
5
- <v-subheader>General</v-subheader>
+ <v-subheader>Persons</v-subheader>
6
<v-list-tile v-for="(person, index) in Persons" :key="index">
7
<v-list-tile-content>
8
<v-list-tile-title>{{person.name}}</v-list-tile-title>
9
</v-list-tile-content>
10
<v-list-tile-action>
11
- <v-icon color="white" @click="remove(person['.key'])">delete</v-icon>
+ <v-icon color="black" @click="remove(person['.key'])">delete</v-icon>
12
</v-list-tile-action>
13
</v-list-tile>
14
</v-list>
@@ -31,7 +31,7 @@
31
32
<script>
33
34
-import Person from "./../models/Person"
+import Person from "@/models/Person"
35
36
export default {
37
created () {
0 commit comments