fix: clear session active when close session

This commit is contained in:
Alexandro Uc Santos
2023-12-16 19:49:57 -06:00
parent e6eae48c73
commit 2a4bde6024
5 changed files with 23 additions and 1 deletions

View File

@@ -23,6 +23,7 @@ export const useCompanyStore = defineStore('company', () => {
const clear = () => {
company.value = null;
companyid.value = null;
loading.value = false;
}