0.2.0 • Published 7 years ago
lm-textarea v0.2.0
textarea
- 作者:winber
- 邮箱:winberxie@163.com
- 版本:
0.2.0
介绍
组件描述内容
安装
lm-* 组件使用 npm 进行管理,命名空间统一为 lm-,请使用以下命令进行组件安装。
npm i lm-textarea --save- 如果你还没有安装
npm,可通过以下方式进行 安装。 - 安装cnpm
npm install -g cnpm --registry=https://registry.npm.taobao.org
使用
- 单标签样例写法
<Textarea
rows={3}
maxLength={10}
onChange={value=>console.log(value)}
value='123456"
/>- 双标签样例写法
<Textarea
rows={3}
maxLength={10}
onChange={value=>console.log(value)}
>
1234567
</Textarea>配置参数
| Prop | Type | Default | Description |
|---|---|---|---|
rows | number | 2 | 行数 |
maxLength | number | undefined | 最大长度并实时显示输入情况 |
onChange | function | undefined | change事件回调函数 |
value | string | '' | value值 优先级高于children |
注意事项
- 暂无
开发调试
进入项目目录后,使用 node 命令启动服务
npm run start打包发布可通过 node 命令执行
npm run build
npm publish相关资料
Changelog
0.1.0
- init
0.2.0
- update react to version 16