mall-app-t/peach/store/trade.js

22 lines
396 B
JavaScript
Raw Normal View History

2024-06-07 02:05:33 +08:00
import { ref } from "vue";
import { defineStore } from "pinia";
2024-06-05 18:58:12 +08:00
2024-06-07 02:05:33 +08:00
const useTradeStore = defineStore("trade", () => {
// 已选择规格类型
const selectedProperty = ref(null);
2024-06-05 18:58:12 +08:00
2024-06-07 02:05:33 +08:00
// 商品信息
const goodsInfo = ref(null);
2024-06-05 18:58:12 +08:00
2024-06-07 02:05:33 +08:00
// 商品属性
const skus = ref(null);
2024-06-05 18:58:12 +08:00
2024-06-07 02:05:33 +08:00
return {
selectedProperty,
goodsInfo,
skus,
};
});
export default useTradeStore;