Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

lm-textarea

earth, react, reactcomponent, textarea

readme

textarea

介绍

组件描述内容


安装

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

  1. init

0.2.0

  1. update react to version 16