1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-06 14:05:28 +00:00
bramw_baserow/web-frontend/modules/database/components/view/grid/SimpleGridField.vue
2022-09-15 08:59:42 +00:00

33 lines
560 B
Vue

<template>
<component
:is="getFieldComponent(field.type)"
:field="field"
:value="row[`field_${field.id}`]"
:selected="false"
:state="{}"
:read-only="true"
/>
</template>
<script>
export default {
name: 'SimpleGridField',
props: {
field: {
type: Object,
required: true,
},
row: {
type: Object,
required: true,
},
},
methods: {
getFieldComponent(type) {
return this.$registry
.get('field', type)
.getFunctionalGridViewFieldComponent()
},
},
}
</script>