| Current Path : /var/www/homesaver/www/bitrix/js/ui/entity-catalog/src/stores/ |
| Current File : /var/www/homesaver/www/bitrix/js/ui/entity-catalog/src/stores/global-state.js |
import { defineStore } from 'ui.vue3.pinia';
import { GroupData } from '@/types/group';
export const useGlobalState = defineStore('global-state', {
state: () => ({
searchQuery: '',
searchApplied: false,
filtersApplied: false,
currentGroup: GroupData,
shouldShowWelcomeStub: true,
}),
});