export const useSettingsStore = defineStore( 'picSettings', () => { const hideAnswers = ref(true); return { hideAnswers }; }, { persist: true } ); if (import.meta.hot) { import.meta.hot.accept(acceptHMRUpdate(useSettingsStore, import.meta.hot)); }