import { defineStore } from "pinia"; export const useWizardStore = defineStore( "wizard", () => { const currentStep = ref(1); function setStep(step: number) { currentStep.value = Math.min(Math.max(1, step), 5); } function reset() { currentStep.value = 1; } return { currentStep, setStep, reset, }; }, { persist: { key: "urgent-tools-wizard", paths: ["currentStep"], }, } );