first commit

This commit is contained in:
Beyhan Oğur
2026-04-26 22:18:17 +03:00
commit 7b2b27a42c
1660 changed files with 123050 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
import { useCartStore } from '~/stores/cart';
export default defineNuxtPlugin(() => {
const cartStore = useCartStore();
const storageKey = cartStore.getStorageKey();
cartStore.hydrateFromStorage(localStorage.getItem(storageKey));
cartStore.$subscribe(
() => {
localStorage.setItem(storageKey, cartStore.toStoragePayload());
},
{ detached: true }
);
});