Añadiendo todo el proyecto

This commit is contained in:
María
2025-09-17 15:07:20 +02:00
parent b6433595e5
commit 78b82d351e
103 changed files with 15500 additions and 0 deletions

20
pages/index.vue Normal file
View File

@@ -0,0 +1,20 @@
<template>
<div>
<h1>{{ lang }}</h1>
</div>
</template>
<script>
export default {
data() {
return {
lang: '',
};
},
mounted() {
const langcode = this.$store.getters['langcode'];
this.lang = langcode;
this.$router.replace(`/${langcode}`);
},
};
</script>