1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-23 12:50:16 +00:00
bramw_baserow/web-frontend/modules/database/components/card/RowCardFieldArray.vue
2021-11-24 10:53:00 +00:00

21 lines
540 B
Vue

<template functional>
<div class="card-array__wrapper">
<component
:is="$options.components.FunctionalFormulaArrayItems"
class="card-array"
:class="data.staticClass || ''"
:field="props.field"
:value="props.value"
></component>
</div>
</template>
<script>
import FunctionalFormulaArrayItems from '@baserow/modules/database/components/formula/array/FunctionalFormulaArrayItems'
export default {
height: 22,
name: 'RowCardFieldArray',
components: { FunctionalFormulaArrayItems },
}
</script>