initial commit
This commit is contained in:
16
web/src/pages/app/appState.ts
Normal file
16
web/src/pages/app/appState.ts
Normal file
@@ -0,0 +1,16 @@
|
||||
import type { DictionaryItem, Folder } from "../../types";
|
||||
|
||||
export const appState = {
|
||||
selectedFolderId: null as number | null,
|
||||
selectedFolderName: "",
|
||||
folders: [] as Folder[],
|
||||
brands: [] as DictionaryItem[],
|
||||
types: [] as DictionaryItem[],
|
||||
filters: {
|
||||
brandId: "",
|
||||
typeId: "",
|
||||
keyword: ""
|
||||
},
|
||||
page: 1,
|
||||
pageSize: 12
|
||||
};
|
||||
Reference in New Issue
Block a user