Sanakey
3 天以前 b5c1614fe473330ceca8b7cff0f1802e19bd5039
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
 
import { defineStore } from 'pinia';
import { store } from '@/store';
 
export const useCluesRowStore = defineStore({
  id: 'clues-row-data',
  state: () => ({
    rowData:{}
  }),
  getters: {
    getRowData(state) {
      return state.rowData  || {};
    },
  },
  actions: {
    /**
     * @description:
     */
    setRowData(data) {
      this.rowData = data;
    },
 
  },
});
 
// Need to be used outside the setup
export function useCluesRowStoreWithOut() {
  return useCluesRowStore(store);
}