feat: 完善搜索模块内容

This commit is contained in:
2024-08-31 18:39:25 +08:00
parent e4fab491db
commit b63515128b
26 changed files with 487 additions and 5 deletions

View File

@@ -9,7 +9,7 @@ export const ENABLE_MC_CTRL_MODULE = IS_DEV;
export const ENABLE_NAV_MODULE = IS_DEV;
/** 启用“搜索”模块 */
export const ENABLE_SEARCH_MODULE = IS_DEV;
export const ENABLE_SEARCH_MODULE = true;
/** 启用“工具箱”模块 */
export const ENABLE_TOOLBOX_MODULE = IS_DEV;

7
src/config/storage.js Normal file
View File

@@ -0,0 +1,7 @@
// 本地储存 key 信息
/** 储存 key 前缀 */
const PREFIX = 'frost-navigation/';
/** 当前使用的搜索引擎名称 */
export const SKEY_SEARCH_ENGINE_NAME = PREFIX + 'search-engine-name';