import { defineStore } from 'pinia' const useShowComponentSelectionStore = defineStore('showComponentSelection', { state: () => ({ showComponentSelection: false as boolean, }), actions: { setShowComponentSelection(show: boolean) { this.showComponentSelection = show; }, }, }); export { useShowComponentSelectionStore };