1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-06 05:55:28 +00:00
bramw_baserow/web-frontend/modules/builder/components/settings/ThemeSettings.vue
Jonathan Adeline c88245b816 Bump stylelint
2024-04-25 10:30:21 +00:00

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>