ваше сообщение коммита

This commit is contained in:
2025-06-01 15:13:52 +03:00
parent 03ea1cf726
commit 2507d776e0
32 changed files with 1832 additions and 445 deletions

View File

@@ -18,7 +18,7 @@
<script setup>
import { defineProps, defineEmits, onMounted, onBeforeUnmount, watch } from 'vue';
import { useAuth } from '../composables/useAuth';
import { useAuthContext } from '../composables/useAuth';
import eventBus from '../utils/eventBus';
const props = defineProps({
@@ -35,7 +35,7 @@ const toggleSidebar = () => {
};
// Обработка аутентификации
const auth = useAuth();
const auth = useAuthContext();
const { isAuthenticated } = auth;
// Мониторинг изменений статуса аутентификации