@umijs/plugin-antd

整合 antd 组件库。

启用方式

配置开启。

介绍

包含以下功能,

  1. 内置 antd,目前内置版本是 ^4.0.0
  2. 基于 babel-plugin-import 做按需编译
  3. 使用 antd@4 时,可一键切换为暗色主题,见下图

配置

dark

开启暗色主题。

  • Type: boolean
  • Default: false

compact

开启紧凑主题。

  • Type: boolean
  • Default: false

比如:

export default {
antd: {
dark: true,
compact: true,
},
};

启用暗色主题,只有 antd 使用版本 4 时才支持。紧凑主题在 antd@>4.1.0 时支持。

FAQ

如何使用 antd 的其他版本?

在项目中显式安装 antd 依赖。

没有 TypeScript 提示怎么办?

在项目中安装 antd 依赖。