33 lines
554 B
Vue
33 lines
554 B
Vue
<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>
|