React---antd的按需引入和自定義主題

一、antd的按需引入+自定義主題

            1.安裝依賴:npm install react-app-rewired customize-cra babel-plugin-import less less-loader antd
            2.修改package.json
                    ....
                        "scripts": {
                            "start": "react-app-rewired start",
                            "build": "react-app-rewired build",
                            "test": "react-app-rewired test",
                            "eject": "react-scripts eject"
                        },
                    ....
            3.根目錄下創建config-overrides.js
                   
 1 const { override, fixBabelImports,addLessLoader} = require('customize-cra');
 2 
 3 module.exports = override(
 4   fixBabelImports('import', {
 5     libraryName: 'antd',
 6     libraryDirectory: 'es',
 7     style: true,
 8     }),
 9     addLessLoader({
10         lessOptions:{
11             javascriptEnabled: true,
12             modifyVars: { '@primary-color': 'green' },
13         }
14     }),
15 );

4. antd組件庫的使用

 1 import React, { Component } from 'react'
 2 import { Button,DatePicker } from 'antd';
 3 import {WechatOutlined,WeiboOutlined,SearchOutlined} from '@ant-design/icons'
 4 const { RangePicker } = DatePicker;
 5 
 6 export default class App extends Component {
 7     render() {
 8         return (
 9             <div>
10                 App....
12                 <Button type="primary">按鈕1</Button>
13                 <Button >按鈕2</Button>
14                 <Button type="link">按鈕3</Button>
15                 <Button type="primary" icon={<SearchOutlined />}>
16                     Search
17                 </Button>
18                 <WechatOutlined />
19                 <WeiboOutlined />
20                 <DatePicker/>
21                 <RangePicker/>
22             </div>
23         )
24     }
25 }
                4.備註:不用在組件裏親自引入樣式了,即:import 'antd/dist/antd.css'應該刪掉

 二、UI庫

1. material-ui(國外)

  1. 官網: http://www.material-ui.com/#/
  2. github: https://github.com/callemall/material-ui

2. ant-design(國內螞蟻金服)

  1. 官網: https://ant.design/index-cn
  2. Github: https://github.com/ant-design/ant-design/

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章