Update
This commit is contained in:
@@ -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>
|
||||
Reference in New Issue
Block a user