45 lines
1.2 KiB
Vue
45 lines
1.2 KiB
Vue
<template>
|
|
<main v-if="consumoComponents" class="min-h-screen relative mx-4 md:mx-8">
|
|
<template v-for="(component, index) in consumoComponents" :key="`consumo-component-${component.component}-${index}`">
|
|
<component
|
|
:is="component.component"
|
|
v-if="component"
|
|
v-bind="component.props" />
|
|
</template>
|
|
</main>
|
|
</template>
|
|
|
|
<script>
|
|
import HeroPages from '~/components/HeroPages.vue';
|
|
import TextWithImage from '../../components/TextWithImage.vue';
|
|
import SectionWithCards from '../../components/SectionWithCards.vue';
|
|
export default {
|
|
components: {
|
|
HeroPages,
|
|
TextWithImage,
|
|
SectionWithCards
|
|
},
|
|
data() {
|
|
return {
|
|
consumoComponents: []
|
|
};
|
|
},
|
|
async created() {
|
|
const langcode = this.$route.params.langcode;
|
|
try {
|
|
const res = await import(`~/data/${langcode}/foro.json`);
|
|
this.consumoComponents = res.default;
|
|
} catch (err) {
|
|
console.error('Error al cargar contenido:', err);
|
|
this.consumoComponents = [
|
|
{
|
|
component: 'ErrorComponent',
|
|
props: {
|
|
message: 'Contenido no disponible',
|
|
},
|
|
},
|
|
];
|
|
}
|
|
}
|
|
}
|
|
</script> |