saltui
1.0.0
中文| English
SaltUI 是與釘釘官方合作的React UI 元件庫,致力於為釘釘微應用開發者以及其他React 開發者提供高效、簡潔、實用的組件化解決方案。
https://salt-ui.github.io/
$ npm install saltui --save
import { Button } from 'saltui' ;
ReactDOM . render ( < Button /> , mountNode ) ;
使用babel-plugin-import(建議)。
// .babelrc or babel-loader option
{
"plugins" : [
[ "import" , { libraryName : "saltui" , camel2DashComponentName : false } ]
]
}
配置好後,引用方式不需要改變,即可實現按需載入。
或者,手動引入
import Button from 'saltui/lib/Button' ;
@import '~saltui/build/salt-ui.css' ;
本專案基於MIT 協議進行開發和發布。