mirror of
https://gitlab.com/bramw/baserow.git
synced 2024-11-24 16:36:46 +00:00
25 lines
583 B
Vue
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>
|