import type { IOrder } from '@types'; export const useCartStore = defineStore('cart', () => { const currentOrder = ref(null); const setCurrentOrders = (order: IOrder | null) => { currentOrder.value = order; }; return { currentOrder, setCurrentOrders, }; });