cart.ts 91 B

12345
  1. import { reactive,ref } from "vue";
  2. export const carts = reactive({
  3. list: [] as any
  4. })