import { defineStore } from 'pinia' export const useHistoryStore = defineStore({ id: 'history', // id必填,且需要唯一 // state state: () => { return { historyDataList: [], detailData: [], } }, // actions actions: { updateHistoryDataList(historyDataList) { this.historyDataList = historyDataList }, updateDetailData(detailData) { this.detailData = detailData }, }, })