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.

71 lines
2.1 KiB

9 years ago
# Ant Design [![](https://img.shields.io/travis/ant-design/ant-design.svg?style=flat-square)](https://travis-ci.org/ant-design/ant-design) [![npm package](https://img.shields.io/npm/v/antd.svg?style=flat-square)](https://www.npmjs.org/package/antd) [![Dependency Status](https://david-dm.org/ant-design/ant-design.svg?style=flat-square)](https://david-dm.org/ant-design/ant-design)
10 years ago
一套企业级的前端设计语言和基于 React 的实现。
10 years ago
9 years ago
设计文档和组件实现均在紧密整理和开发中,部分页面可能不完善,预计 8 月份释出正式版本。
10 years ago
9 years ago
<p align="center">
<a href="http://ant.design">
<img width="360" src="https://t.alipayobjects.com/images/rmsweb/T1B9hfXcdvXXXXXXXX.svg">
</a>
</p>
10 years ago
10 years ago
## 特性
10 years ago
- 企业级金融产品的交互语言和视觉体系。
- 丰富实用的 React UI 组件。
10 years ago
- 基于 React 的组件化开发模式。
10 years ago
- 背靠 npm 生态圈。
10 years ago
- 基于 webpack 的调试构建方案,支持 ES6。
10 years ago
9 years ago
## 示例
10 years ago
```jsx
var antd = require('antd');
var Datepicker = antd.Datepicker;
10 years ago
React.render(<Datepicker />, mountNode);
```
10 years ago
## 链接
- [首页](http://ant.design/)
10 years ago
- [文档](http://ant.design/docs/introduce)
10 years ago
- [组件](http://ant.design/components/)
9 years ago
- [构建调试工具](https://github.com/ant-design/antd-bin)
- [开发计划](https://github.com/ant-design/ant-design/issues/9)
- [修改记录](CHANGELOG.md)
10 years ago
- [React 模块](http://react-component.github.io/)
10 years ago
- [React 代码规范](https://github.com/react-component/react-component.github.io/blob/master/docs/zh-cn/component-code-style.md)
- [组件设计原则](https://github.com/react-component/react-component.github.io/blob/master/docs/zh-cn/component-design.md)
10 years ago
10 years ago
## 如何贡献
我们欢迎任何形式的贡献,有任何建议或意见您可以进行 [Pull Request](https://github.com/ant-design/ant-design/pulls),或者给我们[提问](https://github.com/ant-design/ant-design/issues)。
10 years ago
## 开发说明
10 years ago
#### 本地调试
```bash
9 years ago
$ npm install
10 years ago
$ npm start
```
然后访问 http://127.0.0.1:8000 。
9 years ago
#### [网站](http://ant.design)部署
10 years ago
```bash
$ npm run deploy
```
#### 版本构建
```bash
$ npm run release
10 years ago
```