From a426fb22b63ad96dcb743b4f05310a325e2c2b34 Mon Sep 17 00:00:00 2001 From: zdl <3489966805@qq.com> Date: Thu, 15 Jan 2026 11:42:44 +0800 Subject: [PATCH] =?UTF-8?q?refactor(HeroPanel):=20=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E6=A8=A1=E5=9D=97=E5=85=A5=E5=8F=A3=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 统一导出主组件、常量、工具函数、表格渲染器 - 支持 import HeroPanel from './HeroPanel' 和模块化导入 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- src/views/Community/components/HeroPanel/index.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/views/Community/components/HeroPanel/index.js diff --git a/src/views/Community/components/HeroPanel/index.js b/src/views/Community/components/HeroPanel/index.js new file mode 100644 index 00000000..804490cc --- /dev/null +++ b/src/views/Community/components/HeroPanel/index.js @@ -0,0 +1,12 @@ +// HeroPanel 模块入口 +// 导出主组件 +export { default } from '../HeroPanel'; + +// 导出常量 +export * from './constants'; + +// 导出工具函数 +export * from './utils'; + +// 导出表格渲染器 +export * from './columns';