Files
Matthias Guillitte cb242e59ba
Some checks failed
linter / quality (push) Successful in 3m37s
tests / ci (push) Failing after 13m21s
Minimal Viable Product + Refactor to pinia store + Fix PDF export
2025-09-16 16:30:37 +02:00

15 lines
374 B
TypeScript

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