Skip to content

Latest commit

 

History

History
105 lines (69 loc) · 6.09 KB

README-zh_CN.md

File metadata and controls

105 lines (69 loc) · 6.09 KB

Ant Design for San

一套基于 Ant DesignSan 的企业级 UI 组件库

License: MIT

English | 简体中文

✨ 特性

  • 提炼自企业级中后台产品的交互语言和视觉风格。
  • 开箱即用的高质量 San 组件。
  • 共享 Ant Design of React 设计工具体系。

🖥 支持环境

  • 现代浏览器和 IE9 及以上。
  • 支持服务端渲染。
IE / Edge
IE / Edge
Firefox
Firefox
Chrome
Chrome
Safari
Safari
Opera
Opera
IE9, IE10, IE11, Edge last 2 versions last 2 versions last 2 versions last 2 versions

📦 安装

我们推荐使用npm来进行安装,它会使你的开发更简单。

$ npm install santd --save

如果你的网络环境不佳,推荐使用 cnpm.

🔨 使用

import san from 'san';
import {DatePicker} from "santd";

const App = san.defineComponent({
    components: {
        's-datepicker': DatePicker
    },
    template: `<div><s-datepicker /></div>`
});

const myApp = new App();
myApp.attach(document.body);

手动加载样式

import "santd/dist/santd.css"; // or 'santd/dist/santd.less'

或者 按需加载.

🌍 国际化

请查看 i18n.

🔗 链接

⌨️ 开发

可以使用 Gitpod 进行在线开发:

Open in Gitpod

或者克隆到本地开发:

$ git clone [email protected]:ecomfe/santd.git
$ cd santd
$ npm install
$ npm start button

打开浏览器访问 http://127.0.0.1:8822

🤝 参与共建 PRs Welcome

我们欢迎所有的共建者, 你可以 pull requestsGitHub issues.

强烈推荐阅读 《提问的智慧》《如何向开源社区提问题》《如何有效地报告 Bug》《如何向开源项目提交无法解答的问题》更好的问题更容易获得帮助。

☀️ License

MIT