<template id='score-info'>
<f7-card v-if='scores !== undefined'>
<f7-card-header><b>{{ scores.rank }}</b></f7-card-header>
<f7-card-content>
<f7-grid v-for='value, key in scores' v-if='key!=="rank" && key!=="type"' :key='key'>
<f7-col width="75">{{ key }}:</f7-col>
<f7-col width="25">{{ value }}</f7-col>
</f7-grid>
</f7-card-content>
<f7-card-footer>У вас не осталось "шапок-неведимок"</f7-card-footer>
</f7-card>
</template>