integración dinamica componentes y json con idioma

This commit is contained in:
María
2025-07-30 08:04:58 +02:00
committed by María
parent fb4c831c06
commit aa554907d4
4 changed files with 72 additions and 36 deletions

21
components/HeroHome.vue Normal file
View File

@@ -0,0 +1,21 @@
<template>
<div>
<h1>{{ title }}</h1>
<h2>{{ subtitle }}</h2>
</div>
</template>
<script>
export default {
props: {
title: {
type: String,
default: '',
},
subtitle: {
type: String,
default: '',
},
},
}
</script>