gestionar idioma con states de vuex

This commit is contained in:
María
2025-07-29 17:38:12 +02:00
committed by María
parent 8a92b3d1f9
commit fb4c831c06
10 changed files with 124 additions and 24 deletions

8
store/index.js Normal file
View File

@@ -0,0 +1,8 @@
import { createStore } from 'vuex';
import { langcodeModule } from './langcode';
export const kitecosocialStore = createStore({
modules: {
langcode: langcodeModule,
},
});