mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-01-31 03:12:45 +00:00
16 lines
375 B
JavaScript
16 lines
375 B
JavaScript
import applicationContextMixin from '@baserow/modules/builder/mixins/applicationContext'
|
|
import elementForm from '@baserow/modules/builder/mixins/elementForm'
|
|
|
|
export default {
|
|
mixins: [elementForm, applicationContextMixin],
|
|
props: {
|
|
element: {
|
|
type: Object,
|
|
required: true,
|
|
},
|
|
baseTheme: {
|
|
type: Object,
|
|
required: true,
|
|
},
|
|
},
|
|
}
|