first commit

This commit is contained in:
María
2025-09-17 15:29:44 +02:00
commit 211de1bd5e
104 changed files with 15556 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>