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