1.安装 npm install micro-ui-y --save 2.引用 import {Button} from 'micro-ui-y' 3.button API 属性 属性名(name) 类型(type) 必要性(Required) 默认值(default) 描述(description) scenesType String true 无 按钮的类型,目前有:搜索【search reset】表单【add edit】报表【export import copy】弹框【submit back】禁用【disabled】 svgName String false 无 按钮内svg类型,如:Date btnText String true 无 按钮内容,如:提交,返回 width String false "5.625rem" 按钮长 height String false "2.1875rem" 按钮宽 handleBtn Function false 点击按钮的触发的方法 4. 使用方式 import React, {Component, PropTypes} from 'react'; import {Button} from 'micro-ui-y' class TestButton extends Component { constructor(props) { super(props); }; handleBtn = () => { alert("点我了") }; render() { return (