mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-05-18 06:41:02 +00:00
20 lines
422 B
Vue
20 lines
422 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>
|