div.questRewards
h3.text-center(v-once) {{ $t('rewards') }}
div.reward-item
span.svg-icon.inline.icon(v-html="icons.experience")
span.reward-text {{ $t('amountExperience', { amount: item.drop.exp }) }}
div.reward-item(v-if="item.drop.gp != 0")
span.svg-icon.inline.icon(v-html="icons.gold")
span.reward-text {{ $t('amountGold', { amount: item.drop.gp }) }}
h3.text-center(v-if='item.drop.items') {{$t('questOwnerRewards')}}
div.reward-item(v-for="drop in item.drop.items")
span.icon
div(:class="getDropIcon(drop)")
span.reward-text {{ getDropName(drop) }}