@aligov/mobile-c-toast
v1.0.4
Published
政务移动端基础组件toast
Downloads
11
Readme
@aligov/mobile-c-toast
Install
$ npm install @aligov/mobile-c-toast --save
Usage
import MobileComponentToast from '@aligov/mobile-c-toast';
API
Props
| name | type | default | describe | | :------- | :----- | :------ | :------------------------------------------------------------ | | visible | Bool | false | 是否展示 | | type | String | 'text' | 可选值:text,longtext,success,error,warning,nonetwork,loading | | content | String | '' | 文本内容 | | duration | Number | 1500 | 多久后消失 | | image | String | '' | 显示图标 |
Function
| name | param | return | describe | | :----- | :---- | :------- | :--------------- | | onHide | Func | () => {} | 需要关闭是的回调 |
Example
import { createElement, render } from 'rax';
import DriverUniversal from 'driver-universal';
import MobileComponentToast from '@aligov/mobile-c-toast';
render(<MobileComponentToast />, document.body, { driver: DriverUniversal });