mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-06 05:55:28 +00:00
27 lines
502 B
Vue
27 lines
502 B
Vue
<template>
|
|
<div class="theme-settings">
|
|
<component
|
|
:is="themeConfigBlock.component"
|
|
v-for="themeConfigBlock in themeConfigBlocks"
|
|
:key="themeConfigBlock.type"
|
|
:builder="builder"
|
|
/>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'ThemeSettings',
|
|
props: {
|
|
builder: {
|
|
type: Object,
|
|
required: true,
|
|
},
|
|
},
|
|
computed: {
|
|
themeConfigBlocks() {
|
|
return Object.values(this.$registry.getAll('themeConfigBlock'))
|
|
},
|
|
},
|
|
}
|
|
</script>
|