mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-23 21:00:17 +00:00
17 lines
244 B
JavaScript
17 lines
244 B
JavaScript
export default {
|
|
props: {
|
|
table: {
|
|
type: Object,
|
|
required: true,
|
|
},
|
|
fieldType: {
|
|
type: String,
|
|
required: false,
|
|
default: '',
|
|
},
|
|
view: {
|
|
type: Object,
|
|
required: true,
|
|
},
|
|
},
|
|
}
|