1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-06 05:55:28 +00:00
bramw_baserow/web-frontend/modules/database/components/row/RowEditFieldArray.vue
2021-11-24 10:53:00 +00:00

23 lines
560 B
Vue

<template>
<div class="control__elements">
<FunctionalFormulaArrayItems
class="row-edit-array-field"
:field="field"
:value="value"
>
</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>