1Introduction
- description:alert 组件
- author:ydr.me
- create:2016-05-30 21:13
- update:2016-05-30 21:13
- github:https://github.com/blearjs/blear.components.alert
2Example
var alert = require('blear.components.alert');
alert('字符串消息');
alert(new Error('错误消息'));
alert
是 blear.ui.alert 的自动实例化模块。
3alert(message)
3.1message
- 类型:
String | Object
- 说明:需要弹出警告的消息,可以是字符串,或者或者包含
message
属性的对象(如 Error 实例)。 - 默认:
""
4Dependencies
5Reference
无。