Skip to content

Latest commit

 

History

History
35 lines (22 loc) · 508 Bytes

Button.md

File metadata and controls

35 lines (22 loc) · 508 Bytes

Button

概述[按钮]

<Button /> 是一个自带点击效果(点击时具有 0.5 透明度)的按钮组件。

注意:

<Button /> 是一个单一子节点组件!

示例代码

import Thresh, { basicWidgets } from 'thresh-js'

const { Button, Text } = basicWidgets

export default class ImageItem extends Thresh.Widget {
  render () {
    return {
      <Button>
      	<Text>这是一个按钮</Text>
      </Button>
    }
  }
}

组件属性