Alert
优质
小牛编辑
123浏览
2023-12-01
警告框,可以配置警告框的标题、内容、按钮文字等。
安装
$ npm install universal-alert --save
方法
alert(options?: Object)
参数
属性 | 类型 | 默认值 | 描述 | 支持 |
---|---|---|---|---|
options | Object | - | alert 参数 | |
options.title | String | - | alert 标题,仅在小程序中支持 | |
options.content | String | - | alert 内容 | |
options.buttonText | String | - | alert 确认按钮文字,不支持web环境 |
示例
import alert from 'universal-alert';
alert({
title: 'alert框的标题',
content: 'alert框的内容',
buttonText: '按钮文字'
}).then(() => {
console.log('确定');
});