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