umi+antd踩坑:antd版本不一致,使用icon报错
2020-11-06 本文已影响0人
逸笛
之前项目安装的是最新版4X版
图标使用是这样的
import {
LinkOutlined, AccountBookOutlined, SendOutlined
} from '@ant-design/icons';
查看版本发现需使用4以下的版本
import { Icon } from 'antd';
<Icon type="caret-down" />
之前项目安装的是最新版4X版
图标使用是这样的
import {
LinkOutlined, AccountBookOutlined, SendOutlined
} from '@ant-design/icons';
查看版本发现需使用4以下的版本
import { Icon } from 'antd';
<Icon type="caret-down" />