安全会议纪要,站班会,安全巡检工单
This commit is contained in:
12
src/store/modules/bigUpload.ts
Normal file
12
src/store/modules/bigUpload.ts
Normal file
@ -0,0 +1,12 @@
|
||||
import { defineStore } from 'pinia';
|
||||
|
||||
export const bigUpload = defineStore('bigUpload', {
|
||||
state: (): { panelShow: boolean } => ({
|
||||
panelShow: false
|
||||
}),
|
||||
actions: {
|
||||
async setPanelShow(bool: boolean) {
|
||||
this.panelShow = bool;
|
||||
}
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user