zky_mandate/src/stores/bigUpload.ts
2023-01-20 10:58:15 +08:00

14 lines
322 B
TypeScript

import { defineStore } from 'pinia';
import {bigUploadStates} from "/@/stores/interface";
export const bigUpload = defineStore('bigUpload', {
state:():bigUploadStates=>({
panelShow:false
}),
actions: {
async setPanelShow(bool: boolean) {
this.panelShow = bool;
}
},
})