1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-18 03:13:47 +00:00
bramw_baserow/web-frontend/modules/database/components/aggregation/GenericViewAggregation.vue
2022-02-23 14:44:52 +00:00

14 lines
402 B
Vue

<template functional>
<div class="grid-view-aggregation__generic">
<span class="grid-view-aggregation__generic__name">{{
props.aggregationType.getShortName()
}}</span>
<span
class="grid-view-aggregation__generic__value"
:class="{
'grid-view-aggregation__generic__value--loading': props.loading,
}"
>{{ props.value }}</span
>
</div>
</template>