feat: enhance processor

This commit is contained in:
Qiuxia Fan
2022-01-21 14:50:27 +08:00
parent b4c1dabfad
commit 1a57665012
7 changed files with 69 additions and 53 deletions

View File

@@ -34,6 +34,8 @@ interface DashboardState {
activedGridItem: string;
durationTime: Duration;
selectorStore: any;
normal: boolean;
destNormal: boolean;
}
export const dashboardStore = defineStore({
@@ -47,6 +49,8 @@ export const dashboardStore = defineStore({
activedGridItem: "",
durationTime: useAppStoreWithOut().durationTime,
selectorStore: useSelectorStore(),
normal: true,
destNormal: true,
}),
actions: {
setLayout(data: LayoutConfig[]) {