alert
警告语
请求参数
Prop | Type | Required | Default | Description |
message | String | Y | N/A | 警告语 |
callback | Function | N | N/A | 点击确认后的回调 |
okTitle | String | N | 确认 | 确定标题 |
接口调用示例
let message = 'hello, dolphinWeex!';
let callback = ()=>{
};
let okTitle='确认';
this.$alert(message, callback, okTitle);
1
2
3
4
5
6