【react學習二】create-react-app 接入antd 並按需加載組件

1.安裝

cnpm i babel-plugin-import --save-dev

2.使用

在根目錄下的package.json下的bable中添加相應代碼css

"babel": {
    "presets": [
      "react-app"
    ],
    "plugins": [
      "transform-runtime",
      [
        "import",
        {
          "libraryName": "antd",
          "style": "css"
        }
      ]
    ]
  },

3.重啓項目  npm start

你就能按需加載antd組件了, 像這樣react

import { Button } from 'antd';
相關文章
相關標籤/搜索