chore: make auth and apollo a bit more reactive

This commit is contained in:
2020-04-06 10:19:18 +02:00
parent aa557faf22
commit cc9968bd06
14 changed files with 1327 additions and 360 deletions
+3 -3
View File
@@ -1,6 +1,6 @@
<template>
<div v-if="events && events.events">
<v-layout row wrap v-for="event in events.events" :key="event.id">
<div>
<v-layout row wrap v-for="event in events" :key="event.id">
<v-flex xs12>
<Event
:event="event"
@@ -29,7 +29,7 @@ export default {
required: true
},
events: {
type: Object,
type: Array,
required: true
}
}