forked from tsai/vite-vue3-lowcode
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
244 B
14 lines
244 B
/**
|
|
* @name: index
|
|
* @author: 卜启缘
|
|
* @date: 2021/5/26 22:55
|
|
* @description:常用的枚举类型
|
|
* @update: 2021/5/26 22:55
|
|
*/
|
|
|
|
/**
|
|
* @description 本地缓存枚举
|
|
*/
|
|
export enum CacheEnum {
|
|
PAGE_DATA_KEY = 'PAGE_DATA_KEY'
|
|
}
|
|
|