tnt-ui
v3.0.2
Published
tnt-ui组件
Downloads
3
Readme
tnt-ui
react 组件库
Install
npm install tnt-ui --save
Usage
import { TntScore } from 'tnt-ui';
ReactDOM.render(
<TntScore
defaultValue={ 3.5 }
style={{ fontSize: 16,margin:20 }}
allowHalf
/>, app);
组件
按需加载
使用 babel-plugin-import
.babelrc or babel-loader 配置
{
"plugins": [
["import", { libraryName: "tnt-ui"}]
]
}
或者
import TntScore from 'tnt-ui/lib/tnt-score'
浏览器引入
tnt-ui的npm包内dist目录有js和css文件在在文件引用即可
全局变量名 tntui
例如:
ReactDOM.render(React.createElement(
'div',
null,
React.createElement(tntui.TntScore, {
defaultValue: 3.5,
style: { fontSize: 16, margin: 20 },
allowHalf: true
})
), document.getElementById('app'));
说明
此组件库仅供学习使用,PC端兼容性方面未作考虑!