orderPaymentParamStore.js 321 B

1234567891011121314151617
  1. import { defineStore } from "pinia";
  2. export const orderPaymentParamStore = defineStore("orderPaymentParam", {
  3. state: () => ({
  4. paymentDetail: {},
  5. }),
  6. getters: {
  7. getPaymentDetail: (state) => state.paymentDetail,
  8. },
  9. actions: {
  10. setPaymentDetail(val) {
  11. this.paymentDetail = val;
  12. },
  13. },
  14. });