共计 182 个字符,预计需要花费 1 分钟才能阅读完成。
-
步骤(次要参照官网流程)
-
装置 antd:
yarn add antd
-
在页面中应用组件
import {Button} from 'antd'; export default () => {return (<Button type="primary">Primary</Button>) }
-
-
踩坑
- 引入后无款式
-
解决:在 src/index.js 中增加
import 'antd/dist/antd.css';
正文完