add: transaltion sidebar & home & company

This commit is contained in:
Alexandro Uc Santos
2024-05-22 20:42:42 -06:00
parent 6aa95a6bd1
commit 264a6c6dfc
9 changed files with 190 additions and 57 deletions

View File

@@ -20,6 +20,7 @@ export const useAuthStore = defineStore('auth', () => {
const checking = ref(false);
const authStatus = ref('checking');
const token = ref('')
const lang = ref('es');
const user = ref(null);
const publicNames = [
'terms-conditions',
@@ -107,6 +108,7 @@ export const useAuthStore = defineStore('auth', () => {
authStatus,
checkSession,
authenticationPromise,
updateProfile
updateProfile,
lang
}
});