You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 31, 2025. It is now read-only.
exportconstuseStore=defineStore('main',{state: ()=>({counter: 0,}),persist: true,actions: {// If this function is not async with await on $reset, the localstorage doesn't update (even though pinia does update)// If F5 is pressed after setCounter has been called, counter will go back to previous state instead of 100setCounter100(){this.$reset();this.counter=100},},})