This commit is contained in:
2026-05-13 17:11:09 +02:00
commit ea63897455
2785 changed files with 359868 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
<script setup>
import BlockSlot from './BlockSlot.vue';
defineProps({
block: {
type: Object,
required: true,
},
activeLang: {
type: String,
default: '',
},
});
</script>
<template>
<section class="block-full-width">
<BlockSlot
:slot-data="block.slot"
:block-id="block.id"
slot-key="slot"
:active-lang="activeLang"
:column="false"
/>
</section>
</template>
<style scoped>
.block-full-width {
width: 100%;
}
</style>