14 lines
322 B
TypeScript
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;
|
|
}
|
|
},
|
|
})
|