You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

2.6 KiB

Ant Design npm package NPM downloads Join the chat at https://gitter.im/ant-design/ant-design

一套企业级的 UI 设计语言和 React 实现。

特性

  • 提炼和服务企业级中后台产品的交互语言和视觉风格。
  • React Component 上精心封装的高质量 UI 库。
  • 基于 npm + webpack + babel 的工作流,支持 ES2015。

安装

npm install antd

示例

  • 使用全部组件

    import { DatePicker } from 'antd';
    ReactDOM.render(<DatePicker />, mountNode);
    
  • 按需使用

    import DatePicker from 'antd/lib/date-picker';
    ReactDOM.render(<DatePicker />, mountNode);
    

引入样式:

// only need to import once in entry module
import 'antd/lib/index.css';
// or less for modifyVars
import 'antd/style/index.less';

浏览器支持

现代浏览器和 IE8 及以上。

链接

如何贡献

我们欢迎任何形式的贡献,有任何建议或意见您可以进行 Pull Request,或者给我们 提问