# little-deer-ui
**Repository Path**: gjq0208/little-deer-ui
## Basic Information
- **Project Name**: little-deer-ui
- **Description**: No description available
- **Primary Language**: JavaScript
- **License**: MIT
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 2
- **Forks**: 2
- **Created**: 2020-08-14
- **Last Updated**: 2022-08-03
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# little-deer-ui
## 使用
```sh
npm install little-deer-ui
or
yarn add little-deer-ui
```
## 按需加载组件配置
### 在 create-react-app 中使用
```sh
yarn add react-app-rewired customize-cra
```
```json
/* package.json */
"scripts": {
- "start": "react-scripts start",
+ "start": "react-app-rewired start",
- "build": "react-scripts build",
+ "build": "react-app-rewired build",
- "test": "react-scripts test",
+ "test": "react-app-rewired test",
}
```
然后在项目根目录创建一个 `config-overrides.js` 用于修改默认配置
```javascript
module.exports = function override(config, env) {
// do stuff with the webpack config...
return config;
};
```
### 使用 babel-plugin-import
```shell
yarn add babel-plugin-import
```
```javascript
+ const { override, fixBabelImports } = require('customize-cra');
- module.exports = function override(config, env) {
- // do stuff with the webpack config...
- return config;
- };
+ module.exports = override(
+ fixBabelImports('import', {
+ libraryName: 'little-deer-ui',
+ libraryDirectory: 'dist/lib',
+ camel2DashComponentName: false
+ },'little-deer-ui'),
+ );
```
### 引入Layout使用
安装history
```shell
npm add history@4.10.0
or
yarn add history@4.10.0
```
```jsx
import {Layout} from 'little-deer-ui'
import {createHashHistory} from 'history'
const routeItems = [
{
path: '/home',
exact: true,
meta: {
tabFixed: true,
isCache: true,
icon: () =>