1
0
mirror of https://gitlab.com/bramw/baserow.git synced 2024-11-25 00:46:46 +00:00
bramw_baserow/web-frontend/modules/database/components/view/grid/fields/FunctionalGridViewFieldArray.vue
2024-06-19 18:19:23 +00:00

24 lines
672 B
Vue

<template functional>
<!-- Vue 2 does not support nested importing of components other than this way -->
<component
:is="$options.components.FunctionalFormulaArrayItems"
class="grid-view__cell grid-view-array-field"
:class="[data.staticClass, data.class]"
:field="props.field"
:value="props.value"
:selected="props.selected"
v-on="listeners"
>
<slot></slot>
</component>
</template>
<script>
import FunctionalFormulaArrayItems from '@baserow/modules/database/components/formula/array/FunctionalFormulaArrayItems'
export default {
name: 'FunctionalGridViewFieldArray',
components: { FunctionalFormulaArrayItems },
}
</script>