mirror of
https://gitlab.com/bramw/baserow.git
synced 2024-11-24 16:36:46 +00:00
15 lines
399 B
Vue
15 lines
399 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>
|