no message
This commit is contained in:
parent
bf913b0417
commit
69af860187
|
|
@ -1,20 +1,18 @@
|
|||
<template>
|
||||
<div class="room">
|
||||
<div class="room__header">
|
||||
<h1 class="room__title">Ein historisches Festival</h1>
|
||||
<h1 class="room__title">{{room.title}}</h1>
|
||||
<p class="room__intro">
|
||||
Schildern Sie ein historisches Festival (z. B. Woodstock, Isle of Wight), an dem Sie gerne dabei gewesen wären.
|
||||
Schreiben Sie einen Tagesblog.
|
||||
{{room.description}}
|
||||
</p>
|
||||
<div class="room__meta">
|
||||
<room-group-widget :group="'Fábrica Nacional de Moneda y Timbre'"></room-group-widget>
|
||||
|
||||
<room-entry-count-widget :entry-count="roomEntryCount"></room-entry-count-widget>
|
||||
</div>
|
||||
</div>
|
||||
<div class="room__content">
|
||||
<add-room-entry></add-room-entry>
|
||||
<room-entry v-for="entry in room.roomEntries" v-bind="entry" :key="entry.id"></room-entry>
|
||||
<room-entry v-for="entry in room.roomentrySet" v-bind="entry" :key="entry.id"></room-entry>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
|
@ -55,7 +53,7 @@
|
|||
|
||||
computed: {
|
||||
roomEntryCount() {
|
||||
return (this.room && this.room.roomEntries) ? this.room.roomEntries.length : 0
|
||||
return (this.room && this.room.roomentrySet) ? this.room.roomentrySet.length : 0
|
||||
}
|
||||
},
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue