mirror of
https://gitlab.com/bramw/baserow.git
synced 2024-11-24 16:36:46 +00:00
17 lines
375 B
JavaScript
17 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,
|
|
},
|
|
},
|
|
}
|