mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-14 00:59:06 +00:00
20 lines
391 B
JavaScript
20 lines
391 B
JavaScript
export default {
|
|
props: {
|
|
element: {
|
|
type: Object,
|
|
required: true,
|
|
},
|
|
builder: {
|
|
type: Object,
|
|
required: true,
|
|
},
|
|
mode: {
|
|
// editing = being editing by the page editor
|
|
// preview = previewing the application
|
|
// public = publicly published application
|
|
type: String,
|
|
required: false,
|
|
default: '',
|
|
},
|
|
},
|
|
}
|