# react-admin-2206 **Repository Path**: connerljlx_admin/react-admin-2206 ## Basic Information - **Project Name**: react-admin-2206 - **Description**: 2206班react后台管理 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2023-02-16 - **Last Updated**: 2025-03-05 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # antd antd-mobile antd-vue # react 路由懒加载 动态引入 Suspense lazy方法 结合使用 引入组件 ```js import { lazy } from 'react' const ItemLists = lazy(() => import('路径')) loading... }> {/* 包裹懒加载组件 一般路由 */} ``` # 处理日期格式 数据 moment.js dayjs # react 插件 history 用于在 非组件js文件中操作路由 ```js import { createHashHistory/createBrowserHistory } from 'history' const history = createBrowserHistory() / createHashHistory(); ```