16 lines
412 B
Vue
16 lines
412 B
Vue
<script setup>
|
|
defineProps({
|
|
items: { type: Array, required: true },
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<div class="admin-stat-grid">
|
|
<article v-for="item in items" :key="item.label" class="portal-card admin-stat">
|
|
<span>{{ item.label }}</span>
|
|
<strong>{{ item.value }}</strong>
|
|
<small v-if="item.note">{{ item.note }}</small>
|
|
</article>
|
|
</div>
|
|
</template>
|