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/row/RowEditFieldArray.vue
2022-09-20 08:51:55 +00:00

25 lines
583 B
Vue

<template>
<div class="control__elements">
<FunctionalFormulaArrayItems
class="row-edit-array-field"
:field="field"
:value="value"
:selected="true"
>
</FunctionalFormulaArrayItems>
</div>
</template>
<script>
import rowEditField from '@baserow/modules/database/mixins/rowEditField'
import FunctionalFormulaArrayItems from '@baserow/modules/database/components/formula/array/FunctionalFormulaArrayItems'
export default {
name: 'RowEditFieldArray',
components: {
FunctionalFormulaArrayItems,
},
mixins: [rowEditField],
}
</script>