mirror of
https://gitlab.com/bramw/baserow.git
synced 2024-11-24 16:36:46 +00:00
21 lines
500 B
Vue
21 lines
500 B
Vue
<template>
|
|
<RowEditFieldSingleSelect
|
|
:read-only="true"
|
|
:field="field"
|
|
:value="value"
|
|
:workspace-id="workspaceId"
|
|
>
|
|
</RowEditFieldSingleSelect>
|
|
</template>
|
|
|
|
<script>
|
|
import RowEditFieldSingleSelect from '@baserow/modules/database/components/row/RowEditFieldSingleSelect'
|
|
import baseField from '@baserow/modules/database/mixins/baseField'
|
|
|
|
export default {
|
|
name: 'RowEditFieldSingleSelectReadOnly',
|
|
components: { RowEditFieldSingleSelect },
|
|
mixins: [baseField],
|
|
}
|
|
</script>
|