import { getProductShoppingCartCount } from '@/api/goods/index'; export const cartStore = defineStore('cart', () => { const cartCount = ref(0); const onCartCount = () => { getProductShoppingCartCount({}).then((res) => { if (res.code == 200) { cartCount.value = res.data; } }); }; return { cartCount, onCartCount }; });