index.ts 208 B

12345678
  1. // 导出components文件夹下所有组件
  2. const allComponents = {
  3. Title: () => import("@/components/Text/Title"),
  4. };
  5. export default allComponents;
  6. export type ComponentType = keyof typeof allComponents;