1
0
mirror of https://gitlab.com/bramw/baserow.git synced 2024-11-24 16:36:46 +00:00
bramw_baserow/web-frontend/modules/database/components/card/RowCardFieldArray.vue
2022-09-20 08:51:55 +00:00

23 lines
563 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"
:selected="true"
></component>
</div>
</template>
<script>
import FunctionalFormulaArrayItems from '@baserow/modules/database/components/formula/array/FunctionalFormulaArrayItems'
export default {
height: 22,
name: 'RowCardFieldArray',
components: { FunctionalFormulaArrayItems },
}
</script>