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